From 76319277261ac2d894921eeedf3a359d8353344e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Thu, 30 Dec 2021 22:35:02 +0100 Subject: Test: distinct attach commands instead of boolean parameters --- src/main.cpp | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index 690f7fb..d403d29 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -128,24 +128,25 @@ void createIdentity(const vector & args) } } -void printAttachResult(Peer peer, future && success) +void printAttachResult(string prefix, Peer peer, future && success) { - bool s = success.get(); ostringstream ss; - ss << "attach-result " << getPeer(peer).id << " " << s; + ss << prefix << + (success.get() ? "-done " : "-failed ") << + getPeer(peer).id; printLine(ss.str()); } -future confirmAttach(const Peer & peer, string confirm, future && success) +future confirmPairing(string prefix, const Peer & peer, string confirm, future && success) { - thread(printAttachResult, peer, move(success)).detach(); + thread(printAttachResult, prefix, peer, move(success)).detach(); promise promise; auto input = promise.get_future(); getPeer(peer).attachAnswer = move(promise); ostringstream ss; - ss << "attach-confirm " << getPeer(peer).id << " " << confirm; + ss << prefix << " " << getPeer(peer).id << " " << confirm; printLine(ss.str()); return input; } @@ -154,9 +155,11 @@ void startServer(const vector &) { vector> services; + using namespace std::placeholders; + auto atts = make_unique(); - atts->onRequest(confirmAttach); - atts->onResponse(confirmAttach); + atts->onRequest(bind(confirmPairing, "attach-request", _1, _2, _3)); + atts->onResponse(bind(confirmPairing, "attach-response", _1, _2, _3)); services.push_back(move(atts)); services.push_back(make_unique()); @@ -246,14 +249,19 @@ void updateSharedIdentity(const vector & params) *h = *nh; } -void attach(const vector & params) +void attachTo(const vector & params) { server->svc().attachTo(getPeer(params.at(0)).peer); } void attachAccept(const vector & params) { - getPeer(params.at(0)).attachAnswer.set_value(params[1] == "1"); + getPeer(params.at(0)).attachAnswer.set_value(true); +} + +void attachReject(const vector & params) +{ + getPeer(params.at(0)).attachAnswer.set_value(false); } vector commands = { @@ -263,8 +271,9 @@ vector commands = { { "watch-local-identity", watchLocalIdentity }, { "watch-shared-identity", watchSharedIdentity }, { "update-shared-identity", updateSharedIdentity }, - { "attach", attach }, + { "attach-to", attachTo }, { "attach-accept", attachAccept }, + { "attach-reject", attachReject }, }; } -- cgit v1.2.3