Regression test to make sure that /send_join is updating the destination hosts synchronously and isn't relying on the roomserver.
(t *testing.T)
| 154 | // Regression test to make sure that /send_join is updating the destination hosts synchronously and |
| 155 | // isn't relying on the roomserver. |
| 156 | func TestFederationAPIJoinThenKeyUpdate(t *testing.T) { |
| 157 | test.WithAllDatabases(t, func(t *testing.T, dbType test.DBType) { |
| 158 | testFederationAPIJoinThenKeyUpdate(t, dbType) |
| 159 | }) |
| 160 | } |
| 161 | |
| 162 | func testFederationAPIJoinThenKeyUpdate(t *testing.T, dbType test.DBType) { |
| 163 | base, close := testrig.CreateBaseDendrite(t, dbType) |
nothing calls this directly
no test coverage detected