Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 302de275be73f8893cac88f5c4c89cbb85f36613 (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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
/*******************************************************************************
 * Copyright (c) 2008, 2014 Institute for Software, HSR Hochschule fuer Technik
 * Rapperswil, University of applied sciences 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:
 *     Institute for Software - initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.core.parser.tests.rewrite.changegenerator;

import static org.eclipse.cdt.core.dom.ast.IASTLiteralExpression.lk_integer_constant;
import static org.eclipse.cdt.internal.core.dom.rewrite.ASTModification.ModificationKind.APPEND_CHILD;

import org.eclipse.cdt.core.dom.ast.ASTVisitor;
import org.eclipse.cdt.core.dom.ast.IASTArrayDeclarator;
import org.eclipse.cdt.core.dom.ast.IASTArrayModifier;
import org.eclipse.cdt.core.dom.ast.IASTBinaryExpression;
import org.eclipse.cdt.core.dom.ast.IASTCompoundStatement;
import org.eclipse.cdt.core.dom.ast.IASTDeclSpecifier;
import org.eclipse.cdt.core.dom.ast.IASTDeclaration;
import org.eclipse.cdt.core.dom.ast.IASTDeclarationStatement;
import org.eclipse.cdt.core.dom.ast.IASTDeclarator;
import org.eclipse.cdt.core.dom.ast.IASTExpression;
import org.eclipse.cdt.core.dom.ast.IASTExpressionList;
import org.eclipse.cdt.core.dom.ast.IASTForStatement;
import org.eclipse.cdt.core.dom.ast.IASTIdExpression;
import org.eclipse.cdt.core.dom.ast.IASTIfStatement;
import org.eclipse.cdt.core.dom.ast.IASTInitializer;
import org.eclipse.cdt.core.dom.ast.IASTInitializerClause;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTParameterDeclaration;
import org.eclipse.cdt.core.dom.ast.IASTPointer;
import org.eclipse.cdt.core.dom.ast.IASTSimpleDeclSpecifier;
import org.eclipse.cdt.core.dom.ast.IASTSimpleDeclaration;
import org.eclipse.cdt.core.dom.ast.IASTStandardFunctionDeclarator;
import org.eclipse.cdt.core.dom.ast.IASTStatement;
import org.eclipse.cdt.core.dom.ast.IASTTypeId;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTBinaryExpression;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTCompositeTypeSpecifier;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTConstructorChainInitializer;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTDeclarator;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTFunctionDeclarator;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTFunctionDefinition;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTLiteralExpression;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTNewExpression;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTParameterDeclaration;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTSimpleDeclSpecifier;
import org.eclipse.cdt.internal.core.dom.rewrite.ASTModificationStore;

import junit.framework.TestSuite;

public class AppendTests extends ChangeGeneratorTest {

	public static TestSuite suite() {
		return new TestSuite(AppendTests.class);
	}

	//int *pi[5];

	//int *pi[5][3];
	public void testArrayModifier() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitDeclarators = true;
			}

			@Override
			public int visit(IASTDeclarator declarator) {
				if (declarator instanceof IASTArrayDeclarator) {
					IASTExpression expr = factory.newLiteralExpression(lk_integer_constant, "3");
					IASTArrayModifier newModifier = factory.newArrayModifier(expr);
					addModification(null, APPEND_CHILD, declarator, newModifier);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//int *values = new int[6];

	//int *values = new int[6][5];
	public void testArraySizeExpression() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitExpressions = true;
			}

			@Override
			public int visit(IASTExpression expression) {
				if (expression instanceof ICPPASTNewExpression) {
					ICPPASTNewExpression newExpression = (ICPPASTNewExpression) expression;
					IASTTypeId id = newExpression.getTypeId();
					IASTArrayDeclarator dtor = (IASTArrayDeclarator) id.getAbstractDeclarator();
					IASTArrayModifier[] mods = dtor.getArrayModifiers();
					IASTExpression expr = factory.newLiteralExpression(lk_integer_constant, "5");
					IASTArrayModifier add = factory.newArrayModifier(expr);
					addModification(null, APPEND_CHILD, dtor, add);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//TestClass::TestClass(int a, int b) :
	//		beta(b) {
	//}
	//

	//TestClass::TestClass(int a, int b) :
	//		beta(b), alpha(a) {
	//}
	//
	public void testCtorChainInitializer() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitDeclarations = true;
			}

			@Override
			public int visit(IASTDeclaration decl) {
				if (decl instanceof ICPPASTFunctionDefinition) {
					IASTIdExpression idExpression = factory.newIdExpression(factory.newName("a".toCharArray()));
					IASTInitializer initExpr = factory
							.newConstructorInitializer(new IASTInitializerClause[] { idExpression });
					IASTName initName = factory.newName("alpha".toCharArray());
					ICPPASTConstructorChainInitializer newInitializer = factory.newConstructorChainInitializer(initName,
							initExpr);
					addModification(null, APPEND_CHILD, decl, newInitializer);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//void foo(int parameter) {
	//}

	//void foo(int parameter) throw (int) {
	//}
	public void testException() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitDeclarators = true;
			}

			@Override
			public int visit(IASTDeclarator declarator) {
				if (declarator instanceof ICPPASTFunctionDeclarator) {
					ICPPASTDeclarator exceptionDeclarator = factory.newDeclarator(factory.newName());
					ICPPASTSimpleDeclSpecifier exDeclSpec = factory.newSimpleDeclSpecifier();
					exDeclSpec.setType(IASTSimpleDeclSpecifier.t_int);
					IASTTypeId exception = factory.newTypeId(exDeclSpec, exceptionDeclarator);
					addModification(null, APPEND_CHILD, declarator, exception);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//void main() {
	//	int s = 0, c = 0, h = 0;
	//	s = 3, h = 5;
	//}

	//void main() {
	//	int s = 0, c = 0, h = 0;
	//	s = 3, h = 5, c = 9;
	//}
	public void testExpression() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitExpressions = true;
			}

			@Override
			public int visit(IASTExpression expression) {
				if (expression instanceof IASTExpressionList) {
					IASTName name = factory.newName("c".toCharArray());
					IASTIdExpression leftOperand = factory.newIdExpression(name);
					ICPPASTLiteralExpression rightOperand = factory.newLiteralExpression(lk_integer_constant, "9");
					ICPPASTBinaryExpression binEx = factory.newBinaryExpression(IASTBinaryExpression.op_assign,
							leftOperand, rightOperand);
					addModification(null, APPEND_CHILD, expression, binEx);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//void foo(bool cond1, bool cond2) {
	//}

	//void foo(bool cond1, bool cond2) {
	//	if (cond1) {
	//	} else if (cond2) {
	//	}
	//}
	public void testNestedElseifStatement() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitStatements = true;
			}

			@Override
			public int visit(IASTStatement statement) {
				if (statement instanceof IASTCompoundStatement) {
					IASTIdExpression elseIfCondition = factory.newIdExpression(factory.newName("cond2".toCharArray()));
					IASTStatement elseIfThen = factory.newCompoundStatement();
					IASTIfStatement elseIfStatement = factory.newIfStatement(elseIfCondition, elseIfThen, null);

					IASTIdExpression ifCondition = factory.newIdExpression(factory.newName("cond1".toCharArray()));
					IASTStatement ifThen = factory.newCompoundStatement();
					IASTIfStatement ifStatement = factory.newIfStatement(ifCondition, ifThen, elseIfStatement);

					addModification(null, APPEND_CHILD, statement, ifStatement);
					return PROCESS_ABORT;
				}
				return PROCESS_ABORT;
			}
		});
	}

	//void foo(int existing) {
	//}

	//void foo(int existing, int newParameter) {
	//}
	public void testParameter() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitDeclarators = true;
			}

			@Override
			public int visit(IASTDeclarator declarator) {
				if (declarator instanceof ICPPASTFunctionDeclarator) {
					IASTName parameterName = factory.newName("newParameter".toCharArray());
					ICPPASTDeclarator paramDeclarator = factory.newDeclarator(parameterName);
					paramDeclarator.setName(parameterName);
					ICPPASTSimpleDeclSpecifier declSpec = factory.newSimpleDeclSpecifier();
					declSpec.setType(IASTSimpleDeclSpecifier.t_int);
					ICPPASTParameterDeclaration insertedParameter = factory.newParameterDeclaration(declSpec,
							paramDeclarator);
					addModification(null, APPEND_CHILD, declarator, insertedParameter);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//void foo() {
	//}

	//void foo(int newParameter) {
	//}
	public void testParameterToList() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitDeclarators = true;
			}

			@Override
			public int visit(IASTDeclarator declarator) {
				if (declarator instanceof ICPPASTFunctionDeclarator) {
					IASTName parameterName = factory.newName("newParameter".toCharArray());
					ICPPASTDeclarator parameterDeclarator = factory.newDeclarator(parameterName);
					ICPPASTSimpleDeclSpecifier parameterDeclSpec = factory.newSimpleDeclSpecifier();
					parameterDeclSpec.setType(IASTSimpleDeclSpecifier.t_int);
					ICPPASTParameterDeclaration insertedParameter = factory.newParameterDeclaration(parameterDeclSpec,
							parameterDeclarator);
					addModification(null, APPEND_CHILD, declarator, insertedParameter);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//void foo(int parameter) {
	//}

	//void foo(int *parameter) {
	//}
	public void testPointerToParamter() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitDeclarators = true;
			}

			@Override
			public int visit(IASTDeclarator declarator) {
				if (declarator instanceof ICPPASTFunctionDeclarator) {
					ICPPASTFunctionDeclarator functionDeclarator = (ICPPASTFunctionDeclarator) declarator;
					IASTParameterDeclaration[] parameters = functionDeclarator.getParameters();
					for (IASTParameterDeclaration curParam : parameters) {
						IASTDeclarator paramDeclarator = curParam.getDeclarator();
						IASTName name = paramDeclarator.getName();
						if (name.toString().equals("parameter")) {
							IASTPointer addedPointer = factory.newPointer();
							addModification(null, APPEND_CHILD, paramDeclarator, addedPointer);
							return PROCESS_ABORT;
						}
					}
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//void foo(int *parameter) {
	//}

	//void foo(int **parameter) {
	//}
	public void testPointerToPointerParameter() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitDeclarators = true;
			}

			@Override
			public int visit(IASTDeclarator declarator) {
				if (declarator instanceof ICPPASTFunctionDeclarator) {
					ICPPASTFunctionDeclarator functionDeclarator = (ICPPASTFunctionDeclarator) declarator;
					IASTParameterDeclaration[] parameters = functionDeclarator.getParameters();
					for (IASTParameterDeclaration curParam : parameters) {
						IASTDeclarator paramDeclarator = curParam.getDeclarator();
						IASTName name = paramDeclarator.getName();
						if (name.toString().equals("parameter")) {
							IASTPointer addedPointer = factory.newPointer();
							addModification(null, APPEND_CHILD, paramDeclarator, addedPointer);
							return PROCESS_ABORT;
						}
					}
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//class A
	//{
	//public:
	//	A();
	//	virtual ~A();
	//	int foo();
	//
	//private:
	//	int help();
	//};

	//class A
	//{
	//public:
	//	A();
	//	virtual ~A();
	//	int foo();
	//
	//private:
	//	int help();
	//	int exp(int i);
	//};
	public void testAddDeclarationBugTest() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitDeclSpecifiers = true;
			}

			@Override
			public int visit(IASTDeclSpecifier declSpec) {
				if (declSpec instanceof ICPPASTCompositeTypeSpecifier) {
					IASTSimpleDeclSpecifier returnType = factory.newSimpleDeclSpecifier();
					returnType.setType(IASTSimpleDeclSpecifier.t_int);
					IASTSimpleDeclaration functionDeclaration = factory.newSimpleDeclaration(returnType);

					IASTName functionName = factory.newName("exp".toCharArray());
					IASTStandardFunctionDeclarator declarator = factory.newFunctionDeclarator(functionName);
					IASTSimpleDeclSpecifier paramType = factory.newSimpleDeclSpecifier();
					paramType.setType(IASTSimpleDeclSpecifier.t_int);
					IASTName paramName = factory.newName("i".toCharArray());
					IASTDeclarator decl = factory.newDeclarator(paramName);
					ICPPASTParameterDeclaration param = factory.newParameterDeclaration(paramType, decl);
					declarator.addParameterDeclaration(param);
					functionDeclaration.addDeclarator(declarator);

					addModification(null, APPEND_CHILD, declSpec, functionDeclaration);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//void foo() {
	//	for (int i = 0; i < 10; i++) {
	//
	//
	//	}
	//}

	//void foo() {
	//	for (int i = 0; i < 10; i++) {
	//		int i;
	//		int j;
	//	}
	//}
	public void testMultilineWhitespaceHandling() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitStatements = true;
			}

			@Override
			public int visit(IASTStatement statement) {
				if (statement instanceof IASTForStatement) {
					IASTForStatement forStatement = (IASTForStatement) statement;
					IASTStatement compoundStatement = forStatement.getBody();

					addIntDeclaration(modStore, compoundStatement, "i");
					addIntDeclaration(modStore, compoundStatement, "j");
				}

				return PROCESS_CONTINUE;
			}

			private void addIntDeclaration(final ASTModificationStore modStore, IASTStatement compoundStatement,
					String variableName) {
				ICPPASTSimpleDeclSpecifier newSimpleDeclSpecifier = factory.newSimpleDeclSpecifier();
				newSimpleDeclSpecifier.setType(IASTSimpleDeclSpecifier.t_int);
				IASTSimpleDeclaration newSimpleDeclaration = factory.newSimpleDeclaration(newSimpleDeclSpecifier);
				newSimpleDeclaration.addDeclarator(factory.newDeclarator(factory.newName(variableName.toCharArray())));
				IASTDeclarationStatement newDeclaration = factory.newDeclarationStatement(newSimpleDeclaration);

				addModification(null, APPEND_CHILD, compoundStatement, newDeclaration);
			}
		});
	}

	//void foo() {
	//
	//  for(int i = 0; i < 10; i++){
	//
	//  }

	//void foo() {
	//	for (int i = 0; i < 10; i++) {
	//	}
	//}
	public void testAppendNull() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitStatements = true;
			}

			@Override
			public int visit(IASTStatement statement) {
				if (statement instanceof IASTCompoundStatement) {
					addModification(null, APPEND_CHILD, statement, null);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}

	//void foo() {
	//
	//	for (int i = 0; i < 10; i++) {
	//	}
	//}
	//

	//void foo() {
	//
	//	for (int i = 0; i < 10; i++) {
	//		for (int i = 0; i < 10; i++) {
	//		}
	//	}
	//}
	//
	public void testSelfInsertion() throws Exception {
		compareResult(new ASTVisitor() {
			{
				shouldVisitStatements = true;
			}

			@Override
			public int visit(IASTStatement statement) {
				if (statement instanceof IASTForStatement) {
					IASTForStatement forStatement = (IASTForStatement) statement;
					IASTStatement compoundStatement = forStatement.getBody();
					addModification(null, APPEND_CHILD, compoundStatement, forStatement);
					return PROCESS_ABORT;
				}
				return PROCESS_CONTINUE;
			}
		});
	}
}

Back to the top