Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui.swtbot.tests / src / org / eclipse / tracecompass / tmf / ui / swtbot / tests / viewers / events / CollapseEventsInTableTest.java
CommitLineData
693ec829 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2015 Ericsson
693ec829
BH
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12
fa24d78b 13package org.eclipse.tracecompass.tmf.ui.swtbot.tests.viewers.events;
693ec829
BH
14
15import static org.junit.Assert.assertEquals;
16import static org.junit.Assert.fail;
17import static org.junit.Assume.assumeTrue;
18
19import java.io.File;
20import java.io.IOException;
21import java.net.URI;
22import java.net.URISyntaxException;
23import java.net.URL;
24
25import org.apache.log4j.ConsoleAppender;
26import org.apache.log4j.Logger;
27import org.apache.log4j.SimpleLayout;
28import org.eclipse.core.runtime.FileLocator;
29import org.eclipse.core.runtime.Path;
30import org.eclipse.core.runtime.preferences.IEclipsePreferences;
31import org.eclipse.core.runtime.preferences.InstanceScope;
32import org.eclipse.jface.bindings.keys.IKeyLookup;
33import org.eclipse.jface.bindings.keys.KeyStroke;
34import org.eclipse.jface.bindings.keys.ParseException;
2bdf0193
AM
35import org.eclipse.tracecompass.internal.tmf.core.Activator;
36import org.eclipse.tracecompass.tmf.core.tests.TmfCoreTestPlugin;
37import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimePreferencesConstants;
38import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestampFormat;
fa24d78b
AM
39import org.eclipse.tracecompass.tmf.ui.swtbot.tests.shared.ConditionHelpers;
40import org.eclipse.tracecompass.tmf.ui.swtbot.tests.shared.SWTBotUtils;
693ec829
BH
41import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot;
42import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEditor;
43import org.eclipse.swtbot.swt.finder.junit.SWTBotJunit4ClassRunner;
44import org.eclipse.swtbot.swt.finder.utils.SWTBotPreferences;
45import org.eclipse.swtbot.swt.finder.widgets.SWTBotMenu;
46import org.eclipse.swtbot.swt.finder.widgets.SWTBotTable;
47import org.junit.AfterClass;
48import org.junit.BeforeClass;
49import org.junit.Test;
50import org.junit.runner.RunWith;
51
52/**
53 * SWTBot test for testing collapsing feature.
54 *
55 * @author Bernd Hufmann
56 */
693ec829
BH
57@RunWith(SWTBotJunit4ClassRunner.class)
58public class CollapseEventsInTableTest {
59
60 private static final String TRACE_PROJECT_NAME = "test";
61 private static final String COLLAPSE_TRACE_NAME = "syslog_collapse";
62 private static final String COLLAPSE_TRACE_PATH = "testfiles/" + COLLAPSE_TRACE_NAME;
63 private static final String COLLAPSE_TRACE_TYPE = "org.eclipse.linuxtools.tmf.tests.stubs.trace.text.testsyslog";
64
65 private static File fTestFile = null;
66
67 private static SWTWorkbenchBot fBot;
68
69 /** The Log4j logger instance. */
70 private static final Logger fLogger = Logger.getRootLogger();
71
72 /**
73 * Test Class setup
74 */
75 @BeforeClass
76 public static void init() {
fa24d78b 77 SWTBotUtils.failIfUIThread();
693ec829
BH
78
79 /* set up test trace*/
80 URL location = FileLocator.find(TmfCoreTestPlugin.getDefault().getBundle(), new Path(COLLAPSE_TRACE_PATH), null);
81 URI uri;
82 try {
83 uri = FileLocator.toFileURL(location).toURI();
84 fTestFile = new File(uri);
85 } catch (URISyntaxException | IOException e) {
86 e.printStackTrace();
87 fail();
88 }
89
90 assumeTrue(fTestFile.exists());
91
92 IEclipsePreferences defaultPreferences = InstanceScope.INSTANCE.getNode(Activator.PLUGIN_ID);
93 defaultPreferences.put(ITmfTimePreferencesConstants.DATIME, "MMM d HH:mm:ss");
94 defaultPreferences.put(ITmfTimePreferencesConstants.SUBSEC, ITmfTimePreferencesConstants.SUBSEC_NO_FMT);
95 TmfTimestampFormat.updateDefaultFormats();
96
97 /* Set up for swtbot */
98 SWTBotPreferences.TIMEOUT = 20000; /* 20 second timeout */
99 fLogger.addAppender(new ConsoleAppender(new SimpleLayout(), ConsoleAppender.SYSTEM_OUT));
100 fBot = new SWTWorkbenchBot();
101
102 /* Close welcome view */
fa24d78b 103 SWTBotUtils.closeView("Welcome", fBot);
693ec829
BH
104
105 /* Switch perspectives */
fa24d78b 106 SWTBotUtils.switchToTracingPerspective();
693ec829
BH
107
108 /* Finish waiting for eclipse to load */
fa24d78b 109 SWTBotUtils.waitForJobs();
693ec829
BH
110 }
111
112 /**
113 * Test class tear down method.
114 */
115 @AfterClass
116 public static void tearDown() {
117 /* Set timestamp defaults */
118 IEclipsePreferences defaultPreferences = InstanceScope.INSTANCE.getNode(Activator.PLUGIN_ID);
119 defaultPreferences.put(ITmfTimePreferencesConstants.DATIME, ITmfTimePreferencesConstants.TIME_HOUR_FMT);
120 defaultPreferences.put(ITmfTimePreferencesConstants.SUBSEC, ITmfTimePreferencesConstants.SUBSEC_NANO_FMT);
121 TmfTimestampFormat.updateDefaultFormats();
122 }
123
124 /**
125 * Main test case
126 */
127 @Test
128 public void test() {
fa24d78b
AM
129 SWTBotUtils.createProject(TRACE_PROJECT_NAME);
130 SWTBotUtils.openTrace(TRACE_PROJECT_NAME, fTestFile.getAbsolutePath(), COLLAPSE_TRACE_TYPE);
131 SWTBotEditor editorBot = SWTBotUtils.activateEditor(fBot, fTestFile.getName());
693ec829
BH
132
133 SWTBotTable tableBot = editorBot.bot().table();
134
135 /* Maximize editor area */
136 maximizeTable(tableBot);
137 tableBot.click(1, 0);
138
139 /* Collapse Events */
140 SWTBotMenu menuBot = tableBot.contextMenu("Collapse Events");
141 menuBot.click();
142 fBot.waitUntil(ConditionHelpers.isTableCellFilled(tableBot, "7/22", 1, 1));
143
144 String filterString = tableBot.cell(1, 1);
145 assertEquals("filterString", "7/22", filterString);
146
147 /* Verify collapsed event */
148 filterString = tableBot.cell(7, 0);
149 assertEquals("repeatCount", "+14", filterString);
150
151 filterString = tableBot.cell(7, 1);
152 assertEquals("first timestamp", "Jan 1 06:06:06", filterString);
153
154 filterString = tableBot.cell(7, 2);
693ec829
BH
155 assertEquals("type", "Syslog", filterString);
156
e1de2fd4 157 filterString = tableBot.cell(7, 3);
32528869 158 assertEquals("content", "Timestamp=Jan 1 06:06:06, Host=HostF, Logger=LoggerF, File=SourceFile, Line=9, Message=Message F", filterString);
693ec829
BH
159
160 filterString = tableBot.cell(8, 0);
161 assertEquals("repeatCount", "+1", filterString);
162
163 filterString = tableBot.cell(8, 1);
164 assertEquals("first timestamp (2nd collapse)", "Jan 1 06:06:21", filterString);
165
e1de2fd4 166 filterString = tableBot.cell(8, 3);
32528869 167 assertEquals("content", "Timestamp=Jan 1 06:06:21, Host=HostF, Logger=LoggerF, File=SourceFile, Line=10, Message=Message D", filterString);
693ec829
BH
168
169 /* Clear Filter */
170 menuBot = tableBot.contextMenu("Clear Filters");
171 menuBot.click();
172 fBot.waitUntil(ConditionHelpers.isTableCellFilled(tableBot, "Jan 1 01:01:01", 1, 1));
173 assertEquals("timestamp", "Jan 1 01:01:01", tableBot.cell(1, 1));
174
175 maximizeTable(tableBot);
176
177 fBot.closeAllEditors();
fa24d78b 178 SWTBotUtils.deleteProject(TRACE_PROJECT_NAME, fBot);
693ec829
BH
179 }
180
181 private static void maximizeTable(SWTBotTable tableBot) {
182 try {
183 tableBot.pressShortcut(KeyStroke.getInstance(IKeyLookup.CTRL_NAME + "+"), KeyStroke.getInstance("M"));
184 } catch (ParseException e) {
185 fail();
186 }
187 }
188
189}
This page took 0.04131 seconds and 5 git commands to generate.