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/test.cpp

17 lines
458 B
C++
Raw Normal View History

2017-10-11 18:48:27 +05:00
#include <nntpchan/exec_frontend.hpp>
#include <nntpchan/sanitize.hpp>
2016-10-18 17:17:40 +05:00
#include <cassert>
#include <iostream>
int main(int , char * [])
{
nntpchan::Frontend_ptr f (new nntpchan::ExecFrontend("./contrib/nntpchan.sh"));
2016-10-18 17:17:40 +05:00
assert(f->AcceptsMessage("<test@server>"));
assert(f->AcceptsNewsgroup("overchan.test"));
assert(nntpchan::IsValidMessageID("<test@test>"));
assert(!nntpchan::IsValidMessageID("asd"));
2016-10-18 17:17:40 +05:00
std::cout << "all good" << std::endl;
}