Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/backends/nntpchan-daemon/tools/testtool.cpp

13 lines
411 B
C++
Raw Normal View History

2017-05-03 20:37:09 +05:00
#include <cassert>
#include <iostream>
2017-10-17 19:29:56 +05:00
#include <nntpchan/exec_frontend.hpp>
#include <nntpchan/sanitize.hpp>
2017-05-03 20:37:09 +05:00
2018-05-06 19:21:58 +05:00
int main(int, char *[], char * argenv[])
2017-05-03 20:37:09 +05:00
{
2018-05-06 19:21:58 +05:00
nntpchan::Frontend_ptr f(new nntpchan::ExecFrontend("./contrib/nntpchan.sh", argenv));
2017-05-03 22:33:04 +05:00
assert(nntpchan::IsValidMessageID("<a28a71493831188@web.oniichan.onion>"));
2017-05-03 20:37:09 +05:00
assert(f->AcceptsNewsgroup("overchan.test"));
std::cout << "all good" << std::endl;
}