Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4a315af597e55880c52506481dacc8e6f946336a (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/*******************************************************************************
 * Copyright (c) 2004, 2016 Intel 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:
 * Intel Corporation - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.managedbuilder.core.tests;

import java.io.File;
import java.io.FileFilter;
import java.util.ArrayList;

import org.eclipse.cdt.managedbuilder.core.IManagedBuildInfo;
import org.eclipse.cdt.managedbuilder.core.ManagedBuildManager;
import org.eclipse.cdt.managedbuilder.projectconverter.UpdateManagedProjectManager;
import org.eclipse.cdt.managedbuilder.testplugin.CTestPlugin;
import org.eclipse.cdt.managedbuilder.testplugin.ManagedBuildTestHelper;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.IncrementalProjectBuilder;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.ui.dialogs.IOverwriteQuery;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class ManagedProjectUpdateTests extends TestCase {
	private IPath resourcesLocation = new Path(
			CTestPlugin.getFileInPlugin(new Path("resources/oldTypeProjects/")).getAbsolutePath());

	public ManagedProjectUpdateTests(String name) {
		super(name);
	}

	public static Test suite() {
		TestSuite suite = new TestSuite(ManagedProjectUpdateTests.class.getName());

		suite.addTest(new ManagedProjectUpdateTests("testProjectUpdate12_Update"));
		suite.addTest(new ManagedProjectUpdateTests("testProjectUpdate20_Update"));
		suite.addTest(new ManagedProjectUpdateTests("testProjectUpdate21_Update"));
		//		suite.addTest(new ManagedProjectUpdateTests("testProjectUpdate12_NoUpdate"));
		//		suite.addTest(new ManagedProjectUpdateTests("testProjectUpdate20_NoUpdate"));
		//		suite.addTest(new ManagedProjectUpdateTests("testProjectUpdate21_NoUpdate"));
		// TODO:  This is affected by the TODO in UpdateManagedProjectManager
		suite.addTest(new ManagedProjectUpdateTests("testProjectUpdate21CPP_Update"));

		return suite;
	}

	private File getVersionProjectsDir(String version) {
		return CTestPlugin.getFileInPlugin(new Path("resources/oldTypeProjects/" + version));
	}

	private IProject[] createVersionProjects(String version) {
		File file = getVersionProjectsDir(version);
		if (file == null) {
			fail("Test project directory is missing.");
			return null;
		}

		File projectZips[] = file.listFiles(new FileFilter() {
			@Override
			public boolean accept(File pathname) {
				if (pathname.isDirectory())
					return false;
				return true;
			}
		});

		ArrayList<IProject> projectList = new ArrayList<IProject>(projectZips.length);
		for (int i = 0; i < projectZips.length; i++) {
			try {
				String projectName = projectZips[i].getName();
				if (!projectName.endsWith(".zip"))
					continue;

				projectName = projectName.substring(0, projectName.length() - ".zip".length());
				if (projectName.length() == 0)
					continue;
				IProject project = ManagedBuildTestHelper.createProject(projectName, projectZips[i], null, null);
				if (project != null)
					projectList.add(project);
			} catch (Exception e) {
			}
		}
		if (projectList.size() == 0) {
			fail("No projects found in test project directory " + file.getName()
					+ ".  The .zip file may be missing or corrupt.");
			return null;
		}
		return projectList.toArray(new IProject[projectList.size()]);
	}

	private void doTestProjectUpdate(String version, boolean updateProject, boolean overwriteBackupFiles,
			IPath[] files) {
		IOverwriteQuery queryALL = new IOverwriteQuery() {
			@Override
			public String queryOverwrite(String file) {
				return ALL;
			}
		};
		IOverwriteQuery queryNOALL = new IOverwriteQuery() {
			@Override
			public String queryOverwrite(String file) {
				return NO_ALL;
			}
		};

		UpdateManagedProjectManager.setBackupFileOverwriteQuery(overwriteBackupFiles ? queryALL : queryNOALL);
		UpdateManagedProjectManager.setUpdateProjectQuery(updateProject ? queryALL : queryNOALL);

		IProject projects[] = createVersionProjects(version);
		if (projects == null || projects.length == 0)
			return;
		for (int i = 0; i < projects.length; i++) {
			final IProject curProject = projects[i];

			//the project conversion occures the first time
			//ManagedBuildManager.getBuildInfo gets called
			IManagedBuildInfo info = ManagedBuildManager.getBuildInfo(curProject);

			//check whether the managed build info is converted
			boolean isCompatible = UpdateManagedProjectManager.isCompatibleProject(info);
			assertTrue(isCompatible);

			if (isCompatible) {
				//check for correct update
				if (!updateProject) {
					//TODO: if the user has chosen not to update the project the .cdtbuild file should not change
				} else {
					//  Make sure that we have a valid project
					if (info == null || info.getManagedProject() == null
							|| info.getManagedProject().isValid() == false) {
						fail("the project \"" + curProject.getName() + "\" was not properly converted");
					}
				}

				//check whether the project builds without errors
				IWorkspace wsp = ResourcesPlugin.getWorkspace();
				ISchedulingRule rule = wsp.getRuleFactory().buildRule();
				Job buildJob = new Job("project build job") { //$NON-NLS-1$
					@Override
					protected IStatus run(IProgressMonitor monitor) {
						try {
							curProject.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, null);
						} catch (CoreException e) {
							fail(e.getStatus().getMessage());
						} catch (OperationCanceledException e) {
							fail("the project \"" + curProject.getName() + "\" build was cancelled, exception message: "
									+ e.getMessage());
						}
						return new Status(IStatus.OK, "org.eclipse.cdt.managedbuilder.core.tests", IStatus.OK, "", //$NON-NLS-2$
								null);
					}
				};
				buildJob.setRule(rule);

				buildJob.schedule();

				try {
					buildJob.join();
				} catch (InterruptedException e) {
					fail("the build job for the project \"" + curProject.getName()
							+ "\" was interrupted, exception message: " + e.getMessage());
				}

				IStatus status = buildJob.getResult();
				if (status.getCode() != IStatus.OK) {
					fail("the build job for the project \"" + curProject.getName() + "\" failed, status message: "
							+ status.getMessage());
				}

				//compare the generated makefiles to their benchmarks
				if (files != null && files.length > 0) {
					if (i == 0) {
						String configName = info.getDefaultConfiguration().getName();
						IPath benchmarkLocationBase = resourcesLocation.append(version);
						IPath buildLocation = curProject.getLocation().append(configName);
						ManagedBuildTestHelper.compareBenchmarks(curProject, buildLocation, files,
								benchmarkLocationBase);
					}
				}
			}
		}

		for (int i = 0; i < projects.length; i++)
			ManagedBuildTestHelper.removeProject(projects[i].getName());
	}

	/* (non-Javadoc)
	 * tests project v1.2 update
	 * in case when user chooses to update the project
	 */
	public void testProjectUpdate12_Update() {
		IPath[] makefiles = { Path.fromOSString("makefile"), Path.fromOSString("objects.mk"),
				Path.fromOSString("sources.mk"), Path.fromOSString("subdir.mk") };
		doTestProjectUpdate("1.2", true, true, makefiles);
	}

	/* (non-Javadoc)
	 * tests project v2.0 update
	 * in case when user chooses to update the project
	 */
	public void testProjectUpdate20_Update() {
		IPath[] makefiles = { Path.fromOSString("makefile"), Path.fromOSString("objects.mk"),
				Path.fromOSString("sources.mk"), Path.fromOSString("subdir.mk") };
		doTestProjectUpdate("2.0", true, true, makefiles);
	}

	/* (non-Javadoc)
	 * tests project v2.1 update
	 * in case when user chooses to update the project
	 */
	public void testProjectUpdate21_Update() {
		IPath[] makefiles = { Path.fromOSString("makefile"), Path.fromOSString("objects.mk"),
				Path.fromOSString("sources.mk"), Path.fromOSString("subdir.mk"),
				Path.fromOSString("Functions/subdir.mk") };
		doTestProjectUpdate("2.1", true, true, makefiles);
	}

	/* (non-Javadoc)
	 * tests project v2.1 update of a C++ project with C source files
	 */
	public void testProjectUpdate21CPP_Update() {
		IPath[] makefiles = { Path.fromOSString("makefile"), Path.fromOSString("objects.mk"),
				Path.fromOSString("sources.mk"), Path.fromOSString("subdir.mk"),
				Path.fromOSString("Functions/subdir.mk") };
		doTestProjectUpdate("2.1CPP", true, true, makefiles);
	}

	/* (non-Javadoc)
	 * tests project v1.2 update
	 * in case when user chooses not to update the project
	 */
	public void testProjectUpdate12_NoUpdate() {
		doTestProjectUpdate("1.2", false, true, null);
	}

	/* (non-Javadoc)
	 * tests project v2.0 update
	 * in case when user chooses not to update the project
	 */
	public void testProjectUpdate20_NoUpdate() {
		doTestProjectUpdate("2.0", false, true, null);
	}

	/* (non-Javadoc)
	 * tests project v2.1 update
	 * in case when user chooses not to update the project
	 */
	public void testProjectUpdate21_NoUpdate() {
		doTestProjectUpdate("2.1", false, true, null);
	}
}

Back to the top