/* * Copyright 2013, The Sporting Exchange Limited * * Licensed 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. */ // Originally from UpdatedComponentTests/StaticHTML/HTMLPageServed_Basic.xls; package com.betfair.cougar.tests.updatedcomponenttests.statichtml; import com.betfair.testing.utils.cougar.assertions.AssertionUtils; import com.betfair.testing.utils.cougar.beans.HttpCallBean; import com.betfair.testing.utils.cougar.manager.AccessLogRequirement; import com.betfair.testing.utils.cougar.manager.CougarManager; import com.betfair.testing.utils.cougar.misc.*; import org.testng.annotations.Test; import org.w3c.dom.Document; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.sql.Timestamp; /** * Ensure that Cougar can ship static html files: handle basic html */ public class WSDLExposedTest { @Test public void doTest() throws Exception { // Create the HttpCallBean CougarManager cougarManager1 = CougarManager.getInstance(); HttpCallBean httpCallBeanBaseline = cougarManager1.getNewHttpCallBean(); CougarManager cougarManagerBaseline = cougarManager1; // Get the cougar logging attribute for getting log entries later // Point the created HttpCallBean at the correct service httpCallBeanBaseline.setServiceName("baseline", "cougarBaseline"); httpCallBeanBaseline.setVersion("v2"); // Get current time for getting log entries later Timestamp getTimeAsTimeStamp1 = new Timestamp(System.currentTimeMillis()); CougarManager cougarManager3 = CougarManager.getInstance(); CougarManager cougarManager2 = cougarManager3; // Get Expected HTML Response as Input Stream from the given file InputStream inputStream = InputStreamHelpers.getInputStreamForResource("wsdl/Baseline_v2.8.wsdl"); // Transfrom the input stream into a Document (XML) for assertion DocumentBuilder documentBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); Document expectedDocResponse = documentBuilder.parse(inputStream); // Load the Static Page shipped from Cougar HttptestPageBean loadedPage = HttpService.loadPage("http://localhost:8080/wsdl/Baseline_v2.8.wsdl"); // Get the loaded page as a document Document actualDocument = documentBuilder.parse(new ByteArrayInputStream(loadedPage.getPageText().getBytes())); AssertionUtils.multiAssertEquals(expectedDocResponse, actualDocument); // Check the log entries are as expected cougarManager2.verifyAccessLogEntriesAfterDate(getTimeAsTimeStamp1, new AccessLogRequirement(null, "/wsdl/Baseline_v2.8.wsdl", "Ok") ); } }