Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 83022587c192dfb076087e0c0ee60e82f7e012c5 (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) 2006, 2012 IBM Corporation.
 *
 * 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
 *     Markus Schorn (Wind River Systems)
 *******************************************************************************/

package org.eclipse.cdt.internal.pdom.tests;

import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPVariable;
import org.eclipse.cdt.core.model.ICProject;
import org.eclipse.cdt.internal.core.CCoreInternals;
import org.eclipse.cdt.internal.core.pdom.PDOM;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.NullProgressMonitor;

import junit.framework.Test;

/**
 * Tests for verifying whether the PDOM correctly stores information about
 * C++ variable declarations.
 */
public class CPPVariableTests extends PDOMTestBase {

	protected ICProject project;
	protected PDOM pdom;

	public static Test suite() {
		return suite(CPPVariableTests.class);
	}

	@Override
	protected void setUp() throws Exception {
		project = createProject("variableTests");
		pdom = (PDOM) CCoreInternals.getPDOMManager().getPDOM(project);
		pdom.acquireReadLock();
	}

	@Override
	protected void tearDown() throws Exception {
		pdom.releaseReadLock();
		if (project != null) {
			project.getProject().delete(IResource.FORCE | IResource.ALWAYS_DELETE_PROJECT_CONTENT, new NullProgressMonitor());
		}
	}
	
	public void testCPPAutoVariable() throws Exception {
		IBinding[] bindings = findQualifiedName(pdom, "autoCPPVariable");
		assertEquals(1, bindings.length);
		ICPPVariable variable = (ICPPVariable) bindings[0];
		assertFalse(variable.isExtern());
		assertFalse(variable.isStatic());
	}

	public void testCPPExternVariable() throws Exception {
		IBinding[] bindings = findQualifiedName(pdom, "externCPPVariable");
		assertEquals(1, bindings.length);
		ICPPVariable variable = (ICPPVariable) bindings[0];
		assertTrue(variable.isExtern());
	}

	public void testCPPRegisterVariable() throws Exception {
		IBinding[] bindings = findQualifiedName(pdom, "registerCPPVariable");
		assertEquals(1, bindings.length);
		ICPPVariable variable = (ICPPVariable) bindings[0];
	}

	public void testCPPStaticVariable() throws Exception {
		// static elements cannot be found on global scope, see bug 161216
		IBinding[] bindings = findUnqualifiedName(pdom, "staticCPPVariable");
		assertEquals(1, bindings.length);
		ICPPVariable variable = (ICPPVariable) bindings[0];
		assertTrue(variable.isStatic());
	}
}

Back to the top