Backport fixes from main branch and rev patch version.
[shibboleth/cpp-xmltooling.git] / xmltoolingtest / SOAPTest.h
1 /*
2  *  Copyright 2011 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 "XMLObjectBaseTestCase.h"
18
19 #include <fstream>
20 #include <xmltooling/soap/SOAP.h>
21 #include <xmltooling/validation/ValidatorSuite.h>
22
23 using namespace soap11;
24
25 class SOAPTest : public CxxTest::TestSuite {
26 public:
27     SOAPTest() {}
28
29     void testSOAPFault() {
30         string path=data_path + "SOAPFault.xml";
31         ifstream fs(path.c_str());
32         DOMDocument* doc=XMLToolingConfig::getConfig().getValidatingParser().parse(fs);
33         TS_ASSERT(doc!=nullptr);
34
35         const XMLObjectBuilder* b = XMLObjectBuilder::getBuilder(doc->getDocumentElement());
36         TS_ASSERT(b!=nullptr);
37
38         auto_ptr<Envelope> envObject(dynamic_cast<Envelope*>(b->buildFromDocument(doc)));
39         TS_ASSERT(envObject.get()!=nullptr);
40         TSM_ASSERT("SOAP Envelope missing Body", envObject->getBody() != nullptr);
41         TSM_ASSERT_EQUALS("SOAP Body missing Fault", 1, envObject->getBody()->getOrderedChildren().size());
42
43         SchemaValidators.validate(envObject.get());
44     }
45 };