Search in sources :

Example 1 with RestBackendConfig

use of io.kamax.mxisd.config.rest.RestBackendConfig in project mxisd by kamax-io.

the class RestDirectoryProviderTest method before.

@Before
public void before() {
    MatrixConfig mxCfg = new MatrixConfig();
    mxCfg.setDomain(domain);
    mxCfg.build();
    RestBackendConfig cfg = new RestBackendConfig();
    cfg.setEnabled(true);
    cfg.setHost("http://localhost:65000");
    cfg.getEndpoints().setDirectory(endpoint);
    cfg.build();
    p = new RestDirectoryProvider(cfg, mxCfg);
}
Also used : MatrixConfig(io.kamax.mxisd.config.MatrixConfig) RestBackendConfig(io.kamax.mxisd.config.rest.RestBackendConfig) Before(org.junit.Before)

Example 2 with RestBackendConfig

use of io.kamax.mxisd.config.rest.RestBackendConfig in project mxisd by kamax-io.

the class RestThreePidProviderTest method before.

@Before
public void before() {
    MatrixConfig mxCfg = new MatrixConfig();
    mxCfg.setDomain("example.org");
    mxCfg.build();
    RestBackendConfig cfg = new RestBackendConfig();
    cfg.setEnabled(true);
    cfg.setHost("http://localhost:65000");
    cfg.getEndpoints().getIdentity().setSingle(lookupSinglePath);
    cfg.getEndpoints().getIdentity().setBulk(lookupBulkPath);
    cfg.build();
    p = new RestThreePidProvider(cfg, mxCfg);
    lookupSingleRequest = new SingleLookupRequest();
    lookupSingleRequest.setType(ThreePidMedium.Email.getId());
    lookupSingleRequest.setThreePid("john.doe@example.org");
    ThreePidMapping m1 = new ThreePidMapping();
    m1.setMedium(ThreePidMedium.Email.getId());
    m1.setValue("john.doe@example.org");
    ThreePidMapping m2 = new ThreePidMapping();
    m1.setMedium(ThreePidMedium.PhoneNumber.getId());
    m1.setValue("123456789");
    lookupBulkList = new ArrayList<>();
    lookupBulkList.add(m1);
    lookupBulkList.add(m2);
}
Also used : ThreePidMapping(io.kamax.mxisd.lookup.ThreePidMapping) MatrixConfig(io.kamax.mxisd.config.MatrixConfig) SingleLookupRequest(io.kamax.mxisd.lookup.SingleLookupRequest) RestBackendConfig(io.kamax.mxisd.config.rest.RestBackendConfig) Before(org.junit.Before)

Aggregations

MatrixConfig (io.kamax.mxisd.config.MatrixConfig)2 RestBackendConfig (io.kamax.mxisd.config.rest.RestBackendConfig)2 Before (org.junit.Before)2 SingleLookupRequest (io.kamax.mxisd.lookup.SingleLookupRequest)1 ThreePidMapping (io.kamax.mxisd.lookup.ThreePidMapping)1