blob: d4cf0c1ba66309d4aa5c88513148ba1a14876b09 [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 "LdapUserCredentialGenerator.hpp"
// Disable warning for "extra qualifications" here. One of the boost log
// headers triggers this warning. Note: use of disable pragma here is
// intentional - attempts to use push/pop as you ordinarily should just
// yielded a gripe from the MS tools that "warning number '4596' is not a
// valid compiler warning". re-enabling the warning after the include
// fails in the same way, so just leave it disabled for the rest of the
// file. This is safe, since the warning can only trigger inside a class
// declaration, of which there are none in this file.
#ifdef WIN32
#pragma warning(disable : 4596)
#endif
#include <boost/log/trivial.hpp>
#include "Utils.hpp"
namespace apache {
namespace geode {
namespace client {
namespace testframework {
namespace security {
std::string LdapUserCredentialGenerator::getInitArgs(std::string workingDir,
bool) {
auto buildDir = Utils::getEnv("BUILDDIR");
if (!buildDir.empty() && workingDir.empty()) {
workingDir = buildDir + "/framework/xml/Security/";
}
std::string result =
" --J=-Dgemfire.security-authz-xml-uri=" + workingDir + "authz-ldap.xml";
auto ldapSrv = Utils::getEnv("LDAP_SERVER");
result += " --J=-Dgemfire.security-ldap-server=" +
(ldapSrv.empty() ? "ldap" : ldapSrv);
auto ldapRoot = Utils::getEnv("LDAP_BASEDN");
result += " --J=\\\"-Dgemfire.security-ldap-basedn=";
result +=
ldapRoot.empty() ? "ou=ldapTesting,dc=ldap,dc=apache,dc=org" : ldapRoot;
result += "\\\"";
auto ldapSSL = Utils::getEnv("LDAP_USESSL");
result += " --J=-Dgemfire.security-ldap-usessl=";
result += (ldapSSL.empty() ? "false" : ldapSSL);
return result;
}
void LdapUserCredentialGenerator::getValidCredentials(
std::shared_ptr<Properties>& p) {
p->insert("security-username", "geode1");
p->insert("security-password", "geode1");
BOOST_LOG_TRIVIAL(debug) << "inserted valid security-username "
<< p->find("security-username")->value()
<< " password "
<< p->find("security-password")->value();
}
void LdapUserCredentialGenerator::getInvalidCredentials(
std::shared_ptr<Properties>& p) {
p->insert("security-username", "geode1");
p->insert("security-password", "1geode");
BOOST_LOG_TRIVIAL(debug) << "inserted invalid security-username "
<< p->find("security-username")->value()
<< " password "
<< p->find("security-password")->value();
}
} // namespace security
} // namespace testframework
} // namespace client
} // namespace geode
} // namespace apache