Replace "trusted" output flag with security mech ID.
[shibboleth/cpp-opensaml.git] / samltest / samltest.h
1 /*
2  *  Copyright 2001-2005 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "internal.h"
18 #include <fstream>
19 #include <cxxtest/GlobalFixture.h>
20 #include <saml/SAMLConfig.h>
21 #include <saml/binding/ArtifactMap.h>
22 #include <xmltooling/util/ReplayCache.h>
23 #include <xmltooling/util/TemplateEngine.h>
24
25 //#define SAML_LEAKCHECK
26
27 std::string data_path = "../samltest/data/";
28
29 class SAMLFixture : public CxxTest::GlobalFixture
30 {
31 public:
32     bool setUpWorld() {
33         XMLToolingConfig::getConfig().log_config();
34         if (!SAMLConfig::getConfig().init())
35             return false;
36         XMLToolingConfig::getConfig().setReplayCache(new ReplayCache());
37         XMLToolingConfig::getConfig().setTemplateEngine(new TemplateEngine());
38         SAMLConfig::getConfig().setArtifactMap(new ArtifactMap());
39
40         if (getenv("SAMLTEST_DATA"))
41             data_path=std::string(getenv("SAMLTEST_DATA")) + "/";
42         //std::string catpath=data_path + "catalog.xml";
43         //auto_ptr_XMLCh temp(catpath.c_str());
44         //return XMLToolingConfig::getConfig().getValidatingParser().loadCatalog(temp.get());
45         return true;
46     }
47     bool tearDownWorld() {
48         SAMLConfig::getConfig().term();
49 #if defined(_MSC_VER ) && defined(SAML_LEAKCHECK)
50        _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_FILE );
51        _CrtSetReportFile( _CRT_WARN, _CRTDBG_FILE_STDOUT );
52        _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_FILE );
53        _CrtSetReportFile( _CRT_ERROR, _CRTDBG_FILE_STDOUT );
54        _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_FILE );
55        _CrtSetReportFile( _CRT_ASSERT, _CRTDBG_FILE_STDOUT );
56        _CrtDumpMemoryLeaks();
57 #endif
58         return true;
59     }
60     //bool setUp() { printf( "</test>" ); return true; }
61     //bool tearDown() { printf( "</test>" ); return true; }
62 };
63
64 static SAMLFixture globalFixture;
65
66 class GlobalTest : public CxxTest::TestSuite
67 {
68 public:
69     void testGlobal() {
70     }
71 };