You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
package foundation.pEp.jniadapter.test.templateAliceBob;
|
|
|
|
import static foundation.pEp.jniadapter.test.framework.TestLogger.*;
|
|
|
|
import foundation.pEp.jniadapter.test.framework.*;
|
|
import foundation.pEp.jniadapter.test.framework.utils.TestUtils;
|
|
import foundation.pEp.jniadapter.test.utils.*;
|
|
|
|
class TestAlice {
|
|
public static void main(String[] args) throws Exception {
|
|
TestSuite.getDefault().setVerbose(true);
|
|
TestSuite.getDefault().setTestColor(TestUtils.TermColor.GREEN);
|
|
|
|
new TestUnit<AdapterBaseTestContext>("Alice tx msg", new AdapterBaseTestContext(), ctx -> {
|
|
ctx.alice = ctx.engine.myself(ctx.alice);
|
|
|
|
if (ctx.alice.fpr == null) {
|
|
throw new RuntimeException();
|
|
}
|
|
|
|
//send message
|
|
});
|
|
|
|
new TestUnit<AdapterBaseTestContext>("Alice rx msg", new AdapterBaseTestContext(), ctx -> {
|
|
for (int i = 0; i < 1000; i++) {
|
|
log("Alice is waiting for msg...");
|
|
TestUtils.sleep(1000);
|
|
}
|
|
|
|
});
|
|
|
|
TestSuite.getDefault().run();
|
|
}
|
|
}
|
|
|
|
|
|
|