Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2c5c3b650fce816aeb55d5323437dbe3ecc146a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*******************************************************************************
 * Copyright (c) 2009, 2016 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.ua.tests.help.remote;

import org.eclipse.help.internal.base.BaseHelpSystem;
import org.eclipse.ua.tests.help.search.SearchTestUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class SearchUsingRemoteHelp {

	private int mode;

	@Before
	public void setUp() throws Exception {
		RemotePreferenceStore.savePreferences();
		mode = BaseHelpSystem.getMode();
	}

	@After
	public void tearDown() throws Exception {
		RemotePreferenceStore.restorePreferences();
		BaseHelpSystem.setMode(mode);
	}

	@Test
	public void testSearchDefaultLocale() throws Exception {
		BaseHelpSystem.setMode(BaseHelpSystem.MODE_INFOCENTER);
		RemotePreferenceStore.setMockRemoteServer();
		SearchTestUtils.searchOneLocale("endfdsadsads", new String[] { "http://www.eclipse.org" },
				"en");
		RemotePreferenceStore.disableRemoteHelp();
		SearchTestUtils.searchOneLocale("endfdsadsads", new String[0], "en");
	}

	@Test
	public void testSearchDefaultLocaleTwoServers() throws Exception {
		BaseHelpSystem.setMode(BaseHelpSystem.MODE_INFOCENTER);
		RemotePreferenceStore.setTwoMockRemoteServers();
		SearchTestUtils.searchOneLocale("endfdsadsads", new String[] { "http://www.eclipse.org" },
				"en");
		RemotePreferenceStore.disableRemoteHelp();
		SearchTestUtils.searchOneLocale("endfdsadsads", new String[0], "en");
	}

	@Test
	public void testSearchDeWordInDeLocale() throws Exception {
		BaseHelpSystem.setMode(BaseHelpSystem.MODE_INFOCENTER);
		RemotePreferenceStore.setMockRemoteServer();
		SearchTestUtils.searchOneLocale("dedfdsadsads", new String[] { "http://www.eclipse.org" }, "de");
		RemotePreferenceStore.disableRemoteHelp();
		SearchTestUtils.searchOneLocale("dedfdsadsads", new String[0], "de");
	}

	@Test
	public void testSearchEnWordInDeLocale() throws Exception {
		BaseHelpSystem.setMode(BaseHelpSystem.MODE_INFOCENTER);
		RemotePreferenceStore.setMockRemoteServer();
		SearchTestUtils.searchOneLocale("endfdsadsads", new String[0], "de");
		RemotePreferenceStore.disableRemoteHelp();
	}

	@Test
	public void testSearchDeWordInEnLocale() throws Exception {
		BaseHelpSystem.setMode(BaseHelpSystem.MODE_INFOCENTER);
		RemotePreferenceStore.setMockRemoteServer();
		SearchTestUtils.searchOneLocale("dedfdsadsads", new String[0], "en");
		RemotePreferenceStore.disableRemoteHelp();
	}

}

Back to the top