blob: deac62f95650edc27d9a0c761dbf887499b3714f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <boost/test/unit_test.hpp>
#include <ignite/ignition.h>
#include <ignite/thin/ignite_client_configuration.h>
#include <ignite/thin/ignite_client.h>
#include <test_utils.h>
using namespace ignite::thin;
using namespace boost::unit_test;
class SslTestSuiteFixture
{
public:
SslTestSuiteFixture()
{
serverNode = ignite_test::StartCrossPlatformServerNode("ssl.xml", "ServerNode");
}
~SslTestSuiteFixture()
{
ignite::Ignition::StopAll(false);
}
std::string GetConfigFile(const std::string& file)
{
using namespace ignite::common;
std::stringstream pathBuilder;
pathBuilder << ignite_test::GetTestConfigDir() << Fs << "ssl" << Fs << file;
return pathBuilder.str();
}
private:
/** Server node. */
ignite::Ignite serverNode;
};
BOOST_FIXTURE_TEST_SUITE(SslTestSuite, SslTestSuiteFixture)
BOOST_AUTO_TEST_CASE(SslConnectionSuccess)
{
IgniteClientConfiguration cfg;
cfg.SetEndPoints("127.0.0.1:11110");
cfg.SetSslMode(SslMode::REQUIRE);
cfg.SetSslCertFile(GetConfigFile("client_full.pem"));
cfg.SetSslKeyFile(GetConfigFile("client_full.pem"));
cfg.SetSslCaFile(GetConfigFile("ca.pem"));
IgniteClient::Start(cfg);
}
BOOST_AUTO_TEST_CASE(SslConnectionReject)
{
IgniteClientConfiguration cfg;
cfg.SetEndPoints("127.0.0.1:11110");
cfg.SetSslMode(SslMode::REQUIRE);
cfg.SetSslCertFile(GetConfigFile("client_unknown.pem"));
cfg.SetSslKeyFile(GetConfigFile("client_unknown.pem"));
cfg.SetSslCaFile(GetConfigFile("ca.pem"));
BOOST_CHECK_THROW(IgniteClient::Start(cfg), ignite::IgniteError);
}
BOOST_AUTO_TEST_CASE(SslConnectionReject2)
{
IgniteClientConfiguration cfg;
cfg.SetEndPoints("127.0.0.1:11110");
cfg.SetSslMode(SslMode::DISABLE);
BOOST_CHECK_THROW(IgniteClient::Start(cfg), ignite::IgniteError);
}
BOOST_AUTO_TEST_SUITE_END()