source: trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/HTTPUtilsTest.java @ 1922

Last change on this file since 1922 was 1922, checked in by sherbold, 9 years ago
  • fixed test
  • Property svn:mime-type set to text/plain
File size: 3.1 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.http;
16
17import static org.junit.Assert.*;
18
19import java.io.File;
20import java.util.Collection;
21import java.util.Iterator;
22import java.util.List;
23
24import org.junit.Test;
25
26import de.ugoe.cs.autoquest.eventcore.Event;
27import de.ugoe.cs.autoquest.plugin.http.HTTPLogParser;
28import de.ugoe.cs.autoquest.plugin.http.HTTPUtils;
29import de.ugoe.cs.autoquest.plugin.http.eventcore.SOAPEventType;
30import de.ugoe.cs.autoquest.plugin.http.eventcore.SimpleSOAPEventType;
31
32/**
33 * <p>
34 * Tests for the HTTPUtils
35 * </p>
36 *
37 * @author Steffen Herbold
38 */
39public class HTTPUtilsTest {
40   
41    @Test
42    public void testConvertToSimpleSOAPEvent_1() throws Exception {
43        HTTPLogParser parser =
44                new HTTPLogParser(new File(ClassLoader
45                    .getSystemResource("testParseFile_3_properties.txt").getFile()));
46            parser.parseFile(new File(ClassLoader.getSystemResource("testParseFile_3_logfile.log")
47                .getFile()));
48            Collection<List<Event>> events = parser.getSequences();
49
50            assertNotNull(events);
51            assertEquals(1, events.size());
52
53            List<Event> sequence = events.iterator().next();
54           
55            List<Event> newSequence = HTTPUtils.convertToSimpleSOAPEvent(sequence, false);
56           
57            assertNotNull(newSequence);
58            assertEquals(sequence.size(), newSequence.size());
59           
60            Iterator<Event> oldSeqIter = sequence.iterator();
61            Iterator<Event> newSeqIter = newSequence.iterator();
62           
63            while(oldSeqIter.hasNext()) {
64                Event oldEvent = oldSeqIter.next();
65                Event newEvent = newSeqIter.next();
66               
67                if( oldEvent.getType() instanceof SOAPEventType ) {
68                    assertTrue(newEvent.getType() instanceof SimpleSOAPEventType);
69                    SOAPEventType oldEventType = (SOAPEventType) oldEvent.getType();
70                    SimpleSOAPEventType newEventType = (SimpleSOAPEventType) newEvent.getType();
71                    assertEquals(oldEventType.getCalledMethod(), newEventType.getCalledMethod());
72                    assertEquals(oldEventType.getServiceName(), newEventType.getServiceName());
73                    assertNull(newEvent.getTarget());
74                } else {
75                    assertSame(oldEvent, newEvent);
76                }
77            }
78           
79    }
80
81}
Note: See TracBrowser for help on using the repository browser.