mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
76 lines
1.3 KiB
C++
76 lines
1.3 KiB
C++
//
|
|
// WinDriver.cpp
|
|
//
|
|
// Windows test driver for Poco OpenSSL.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "WinTestRunner/WinTestRunner.h"
|
|
#include "NetSSLTestSuite.h"
|
|
#include "Poco/Util/Application.h"
|
|
#include "Poco/Net/HTTPStreamFactory.h"
|
|
#include "Poco/Net/HTTPSStreamFactory.h"
|
|
|
|
|
|
class NetSSLApp: public Poco::Util::Application
|
|
{
|
|
public:
|
|
NetSSLApp()
|
|
{
|
|
Poco::Net::initializeSSL();
|
|
Poco::Net::HTTPStreamFactory::registerFactory();
|
|
Poco::Net::HTTPSStreamFactory::registerFactory();
|
|
}
|
|
|
|
~NetSSLApp()
|
|
{
|
|
Poco::Net::uninitializeSSL();
|
|
}
|
|
|
|
int main(const std::vector<std::string>& args)
|
|
{
|
|
CppUnit::WinTestRunner runner;
|
|
runner.addTest(NetSSLTestSuite::suite());
|
|
runner.run();
|
|
return 0;
|
|
}
|
|
|
|
protected:
|
|
void initialize(Poco::Util::Application& self)
|
|
{
|
|
loadConfiguration(); // load default configuration files, if present
|
|
Poco::Util::Application::initialize(self);
|
|
}
|
|
|
|
private:
|
|
std::vector<std::string> _targs;
|
|
};
|
|
|
|
|
|
class TestDriver: public CppUnit::WinTestRunnerApp
|
|
{
|
|
void TestMain()
|
|
{
|
|
NetSSLApp app;
|
|
std::string argv("TestSuite");
|
|
const char* pArgv = argv.c_str();
|
|
try
|
|
{
|
|
app.init(1, (char**)&pArgv);
|
|
app.run();
|
|
}
|
|
catch (Poco::Exception& exc)
|
|
{
|
|
app.logger().log(exc);
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
static TestDriver theDriver;
|