X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=testing%2Flib%2FServer.hpp;h=fb1b8af184c04e443b60eae06404eb264dbde8a7;hb=c0b779f4045f4858701b3741af805414bc066717;hp=5891dea27fb83dc3b0377e977c16aee1bfe924bf;hpb=42f32d1f7926663821f7a76a34584484f7a4b412;p=awesomized%2Flibmemcached diff --git a/testing/lib/Server.hpp b/testing/lib/Server.hpp index 5891dea2..fb1b8af1 100644 --- a/testing/lib/Server.hpp +++ b/testing/lib/Server.hpp @@ -15,7 +15,7 @@ public: using argv_t = vector>; explicit - Server(string &&binary_ = "false", argv_t && args_ = {}); + Server(string binary_ = "false", argv_t args_ = {}); ~Server(); @@ -29,21 +29,30 @@ public: binary = exchange(s.binary, "false"); args = exchange(s.args, {}); pid = exchange(s.pid, 0); + pipe = exchange(s.pipe, -1); status = exchange(s.status, 0); signalled = exchange(s.signalled, {}); socket_or_port = exchange(s.socket_or_port, {}); + output = exchange(s.output, {}); return *this; }; pid_t getPid() const; - + int getPipe() const; const string &getBinary() const; - const argv_t &getArgs() const; - const socket_or_port_t &getSocketOrPort() const; - optional start(); + struct ChildProc { + pid_t pid; + int pipe; + ChildProc(pid_t pid_, int pipe_) + : pid{pid_} + , pipe{pipe_} + { + } + }; + optional start(); bool stop(); bool signal(int signo = SIGTERM); @@ -52,16 +61,34 @@ public: bool wait(int flags = 0); bool tryWait(); + string &drain(); + private: string binary; argv_t args; pid_t pid = 0; + int pipe = -1; int status = 0; unordered_map signalled; socket_or_port_t socket_or_port = 11211; + string output; [[nodiscard]] vector createArgv(); optional handleArg(vector &arr, const string &arg, const arg_func_t &next_arg); }; + +inline ostream &operator << (ostream &out, const socket_or_port_t sop) { + if (holds_alternative(sop)) { + out << get(sop); + } else { + out << ":" << get(sop); + } + return out; +} + +inline ostream &operator << (ostream &out, const Server &server) { + out << "Server{binary=" << server.getBinary() << ",pid=" << server.getPid() << ",conn=" << server.getSocketOrPort() << "}"; + return out; +}