Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 69f331f6749ccbbd49f4b36502642e383f0df2ac (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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/*******************************************************************************
 * Copyright (c) 2010 Red Hat Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/
package org.eclipse.linuxtools.changelog.parsers.tests;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.eclipse.linuxtools.changelog.tests.helpers.EditorHelper.openEditor;
import static org.eclipse.linuxtools.changelog.tests.helpers.EditorHelper.closeEditor;
import static org.eclipse.linuxtools.changelog.tests.helpers.EditorHelper.getContent;

import java.io.ByteArrayInputStream;
import java.io.InputStream;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IStorage;
import org.eclipse.core.runtime.Path;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.TextSelection;
import org.eclipse.linuxtools.changelog.parsers.CParser;
import org.eclipse.linuxtools.changelog.tests.fixtures.CStringStorage;
import org.eclipse.linuxtools.changelog.tests.fixtures.CStringStorageInput;
import org.eclipse.linuxtools.changelog.tests.fixtures.ChangeLogTestProject;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IStorageEditorInput;
import org.eclipse.ui.texteditor.AbstractTextEditor;
import org.eclipse.ui.texteditor.IDocumentProvider;

/**
 * CParser test suite.
 * 
 */
public class CParserTest {

	// A unique string to mark the place of current selection in source code
	private static final String OFFSET_MARKER = "<# selection #>";
	// The parser under test
	private CParser cParser;
	// A faked project
	private ChangeLogTestProject project;
	// The IEditorPart corresponding to the ChangeLog file
	private IEditorPart cppSourceEditorPart = null;

	@Before
	public void setUp() throws Exception {
		cParser = new CParser();
		project = new ChangeLogTestProject("c-parser-test-project");
	}

	@After
	public void tearDown() throws Exception {
		// Tests in this class use javaSourceEditorPart. In order to avoid
		// spill-over from previous runs, truncate content (i.e. manually set 
		// content to the empty string).
		if (cppSourceEditorPart != null) {
			AbstractTextEditor castEditor = (AbstractTextEditor) cppSourceEditorPart;
			IDocumentProvider iDocProvider = castEditor.getDocumentProvider();
			IDocument changelogContentDoc = iDocProvider.getDocument(castEditor.getEditorInput());
			changelogContentDoc.set("");
			cppSourceEditorPart.doSave(null);
			// Also close open editor in order for default content to work.
			// I.e. avoid spill over from previous test runs
			closeEditor(cppSourceEditorPart);
		}		
		project.getTestProject().delete(true, true, null); // dispose
	}

	/**
	 * Given an IEditorPart we should be able to retrieve the currently
	 * function active C function inside a C source file.
	 * 
	 * @throws Exception
	 */
	@Test
	public void canParseCurrentFunctionFromCFile() throws Exception {
		// make testproject a C project
		project.addCNature();
		
		final String expectedFunctionName = "doSomething";
		final String cSourceCode = "static int " + expectedFunctionName + "(char *test)\n"
				+ "{\n"
					+ "int index = 0;\n"
					+ "// " + OFFSET_MARKER + "\n"
					+ "return 0;\n"
				+ "}\n";

		assertNull(project.getTestProject().findMember( new Path(
								"/src/some_c_file.c")));

		// Add some_c_file.c to project
		InputStream newFileInputStream = new ByteArrayInputStream(
				cSourceCode.getBytes());
		IFile cSourceFile = project.addFileToProject(
				"/src",
				"some_c_file.c", newFileInputStream);

		assertNotNull(project.getTestProject().findMember( new Path(
								"/src/some_c_file.c")));
		
		// Open a source file and get the IEditorPart
		cppSourceEditorPart = openEditor(cSourceFile);
		assertEquals(cSourceCode, getContent(cppSourceEditorPart));
		
		// make sure we have the proper editor type
		assertTrue( cppSourceEditorPart instanceof AbstractTextEditor );

		// Select the snippet we want
		int selectionStart = cSourceCode.indexOf(OFFSET_MARKER);
		assertTrue(selectionStart >= 0);
		int selectionLength = OFFSET_MARKER.length();
		AbstractTextEditor cEditor = (AbstractTextEditor) cppSourceEditorPart;		
		cEditor.getSelectionProvider().setSelection(
				new TextSelection(selectionStart, selectionLength));
		
		final String actualFunctionName = cParser.parseCurrentFunction(cppSourceEditorPart);
		
		assertEquals(expectedFunctionName, actualFunctionName);
	}
	
	/**
	 * Given an IEditorPart and not being inside any function within a C
	 * source file, no function should be determined.
	 * 
	 * @throws Exception
	 */
	@Test
	public void canDetermineThatInNoFunctionInCFile() throws Exception {
		// make test project a C project
		project.addCNature();
		
		final String cSourceCode = "// Prototype " + OFFSET_MARKER + "\n"
			+ "static int doSomething(char *test);\n\n"
			+ "static int doSomething(char *test)\n"
				+ "{\n"
					+ "int index = 0;\n"
					+ "return 0;\n"
				+ "}\n";

		assertNull(project.getTestProject().findMember( new Path(
								"/src/some_c_file.c")));

		// Add some_c_file.c to project
		InputStream newFileInputStream = new ByteArrayInputStream(
				cSourceCode.getBytes());
		IFile cSourceFile = project.addFileToProject(
				"/src",
				"some_c_file.c", newFileInputStream);

		assertNotNull(project.getTestProject().findMember( new Path(
								"/src/some_c_file.c")));
		
		// Open a source file and get the IEditorPart
		cppSourceEditorPart = openEditor(cSourceFile);
		assertEquals(cSourceCode, getContent(cppSourceEditorPart));
		
		// make sure we have the proper editor type
		assertTrue( cppSourceEditorPart instanceof AbstractTextEditor );

		// Select the snippet we want
		int selectionStart = cSourceCode.indexOf(OFFSET_MARKER);
		assertTrue(selectionStart >= 0);
		int selectionLength = OFFSET_MARKER.length();
		AbstractTextEditor cEditor = (AbstractTextEditor) cppSourceEditorPart;		
		cEditor.getSelectionProvider().setSelection(
				new TextSelection(selectionStart, selectionLength));
		
		final String actualFunctionName = cParser.parseCurrentFunction(cppSourceEditorPart);
		
		assertEquals("" /* expect empty function name */, actualFunctionName);
	}
	
	/**
	 * Given an IEditorPart we should be able to retrieve the currently selected
	 * variable identifier inside a C++ file.
	 * 
	 * @throws Exception
	 */
	@Test
	public void canParseCurrentlySelectedVariableIdentifierInCppFile() throws Exception {
		// make test project a C++ project
		project.addCCNature();
		
		final String expectedIdentifier = "myIdentifier";
		final String className = "shape";
		final String cppSourceCode = "class " + className + " {\n"
				+ "int x;\n"
				+ "int y;\n"
			+ "private:\n"
				+ "int color;\n"
				+ "float " + expectedIdentifier + ";\n"
				+ "void set_color(int color);\n"
			+"}\n";

		assertNull(project.getTestProject().findMember( new Path(
								"/src/shape.h")));

		// Add shape.h to project
		InputStream newFileInputStream = new ByteArrayInputStream(
				cppSourceCode.getBytes());
		IFile cppSourceFile = project.addFileToProject(
				"/src",
				"shape.h", newFileInputStream);

		assertNotNull(project.getTestProject().findMember( new Path(
								"/src/shape.h")));
		
		// Open a source file and get the IEditorPart
		cppSourceEditorPart = openEditor(cppSourceFile);
		// make sure editor content is correct
		assertEquals(cppSourceCode, getContent(cppSourceEditorPart));
		
		// make sure we have the proper editor type
		assertTrue( cppSourceEditorPart instanceof AbstractTextEditor );

		// Select the snippet we want
		int selectionStart = cppSourceCode.indexOf(expectedIdentifier);
		assertTrue(selectionStart >= 0);
		// shouldn't need to mark whole length of identifier.
		int selectionLength = expectedIdentifier.length() - 3;
		AbstractTextEditor cppEditor = (AbstractTextEditor) cppSourceEditorPart;		
		cppEditor.getSelectionProvider().setSelection(
				new TextSelection(selectionStart, selectionLength));
		
		final String actualIdentifier = cParser.parseCurrentFunction(cppSourceEditorPart);
		
		assertEquals(className + "." + expectedIdentifier, actualIdentifier);
	}
	
	/**
	 * Given an IEditorPart and not selected any variable identifier in a class, we should
	 * get the class name as selected function name only.  
	 * 
	 * @throws Exception
	 */
	@Test
	public void canParseClassNameIfNoVariableIdentifierSelectedInCppFile() throws Exception {
		// make test project a C++ project
		project.addCCNature();
		
		final String className = "shape";
		final String cppSourceCode = "class " + className + " {\n"
				+ "int x;\n"
				+ "int y;\n"
				+ "// " + OFFSET_MARKER + "\n"
			+ "private:\n"
				+ "int color;\n"
				+ "void set_color(int color);\n"
			+"}\n";

		assertNull(project.getTestProject().findMember( new Path(
								"/src/shape.h")));

		// Add shape.h to project
		InputStream newFileInputStream = new ByteArrayInputStream(
				cppSourceCode.getBytes());
		IFile cppSourceFile = project.addFileToProject(
				"/src",
				"shape.h", newFileInputStream);

		assertNotNull(project.getTestProject().findMember( new Path(
								"/src/shape.h")));
		
		// Open a source file and get the IEditorPart
		cppSourceEditorPart = openEditor(cppSourceFile);
		// make sure editor content is correct
		assertEquals(cppSourceCode, getContent(cppSourceEditorPart));
		
		// make sure we have the proper editor type
		assertTrue( cppSourceEditorPart instanceof AbstractTextEditor );

		// Select the snippet we want
		int selectionStart = cppSourceCode.indexOf(OFFSET_MARKER);
		assertTrue(selectionStart >= 0);
		int selectionLength = OFFSET_MARKER.length();
		AbstractTextEditor cppEditor = (AbstractTextEditor) cppSourceEditorPart;		
		cppEditor.getSelectionProvider().setSelection(
				new TextSelection(selectionStart, selectionLength));
		
		final String actualFunction = cParser.parseCurrentFunction(cppSourceEditorPart);
		
		assertEquals(className, actualFunction);
	}
	
	/**
	 * Given an IEditorPart and current selection is inside a method,
	 * CParser should be able to figure that out.
	 * 
	 * @throws Exception
	 */
	@Test
	public void canParseCurrentMethodNameInCppFile() throws Exception {
		// make test project a C++ project
		project.addCCNature();
		
		final String expectedMethodName = "circle::area";
		final String cppSourceCode = "#include \"circle.h\"\n"
			+ "#include <math.h>\n"
			+ "float " + expectedMethodName + "() {\n"
				+ "// " + OFFSET_MARKER + "\n"
				+ "return this->radius * this-> radius * M_PI\n"
			+ "}\n";

		assertNull(project.getTestProject().findMember( new Path(
								"/src/circle.cpp")));

		// Add shape.h to project
		InputStream newFileInputStream = new ByteArrayInputStream(
				cppSourceCode.getBytes());
		IFile cppSourceFile = project.addFileToProject(
				"/src",
				"circle.cpp", newFileInputStream);

		assertNotNull(project.getTestProject().findMember( new Path(
								"/src/circle.cpp")));
		
		// Open a source file and get the IEditorPart
		cppSourceEditorPart = openEditor(cppSourceFile);
		// make sure editor content is correct
		assertEquals(cppSourceCode, getContent(cppSourceEditorPart));
		
		// make sure we have the proper editor type
		assertTrue( cppSourceEditorPart instanceof AbstractTextEditor );

		// Select the snippet we want
		int selectionStart = cppSourceCode.indexOf(OFFSET_MARKER);
		assertTrue(selectionStart >= 0);
		int selectionLength = OFFSET_MARKER.length();
		AbstractTextEditor cppEditor = (AbstractTextEditor) cppSourceEditorPart;		
		cppEditor.getSelectionProvider().setSelection(
				new TextSelection(selectionStart, selectionLength));
		
		final String actualMethodName = cParser.parseCurrentFunction(cppSourceEditorPart);
		
		assertEquals(expectedMethodName, actualMethodName);
	}
	
	/**
	 * Given an IEditorPart and current selection is inside a method,
	 * CParser should be able to figure that out.
	 * 
	 * @throws Exception
	 */
	@Test
	public void canParseCurrentFunctionInCppFile() throws Exception {
		// make test project a C++ project
		project.addCCNature();
		
		final String expectedFunction = "main";
		final String cppSourceCode = "#include \"circle.h\"\n"
			+ "#include <math.h>\n"
			+ "float circle::area() {\n"
				+ "return this->radius * this-> radius * M_PI\n"
			+ "}\n"
			+ "int " + expectedFunction + "() {\n"
				+ "int some_var = 0;\n"
				+ "// " + OFFSET_MARKER + "\n"
				+ "return 0;\n"
			+ "}\n";

		assertNull(project.getTestProject().findMember( new Path(
								"/src/circle.cpp")));

		// Add shape.h to project
		InputStream newFileInputStream = new ByteArrayInputStream(
				cppSourceCode.getBytes());
		IFile cppSourceFile = project.addFileToProject(
				"/src",
				"circle.cpp", newFileInputStream);

		assertNotNull(project.getTestProject().findMember( new Path(
								"/src/circle.cpp")));
		
		// Open a source file and get the IEditorPart
		cppSourceEditorPart = openEditor(cppSourceFile);
		// make sure editor content is correct
		assertEquals(cppSourceCode, getContent(cppSourceEditorPart));
		
		// make sure we have the proper editor type
		assertTrue( cppSourceEditorPart instanceof AbstractTextEditor );

		// Select the snippet we want
		int selectionStart = cppSourceCode.indexOf(OFFSET_MARKER);
		assertTrue(selectionStart >= 0);
		int selectionLength = OFFSET_MARKER.length();
		AbstractTextEditor cppEditor = (AbstractTextEditor) cppSourceEditorPart;		
		cppEditor.getSelectionProvider().setSelection(
				new TextSelection(selectionStart, selectionLength));
		
		final String actualFunction = cParser.parseCurrentFunction(cppSourceEditorPart);
		
		assertEquals(expectedFunction, actualFunction);
	}
	
	/**
	 * Given an IStorageEditorInput we should be able to retrieve the currently
	 * active C function.
	 * 
	 * @throws Exception
	 */
	@Test
	public void canParseCurrentFunctionFromCStringInIStorageEditorInput() throws Exception {
		final String expectedFunctionName = "doSomething";
		final String cSourceCode = "static int " + expectedFunctionName + "(char *test)\n"
				+ "{\n"
					+ "int index = 0;\n"
					+ "// " + OFFSET_MARKER + "\n"
					+ "return 0;\n"
				+ "}\n";
		
		// prepare IStorageEditorInput
		IStorage cStringStorage = new CStringStorage(cSourceCode);
		IStorageEditorInput cStringStorageEditorInput = new CStringStorageInput(cStringStorage);

		// Figure out the desired offset
		int selectOffset = cSourceCode.indexOf(OFFSET_MARKER);
		assertTrue(selectOffset >= 0);
		
		final String actualFunctionName = cParser.parseCurrentFunction(cStringStorageEditorInput, selectOffset);
		
		assertEquals(expectedFunctionName, actualFunctionName);
	}
}

Back to the top