Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e06d410e43032d930e54945f6a2bc00427c27b8c (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
/*
 * Copyright (c) 2013 QNX Software Systems 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:
 *     Andrew Eidsness - Initial implementation
 */
package org.eclipse.cdt.internal.pdom.tests;

import java.io.File;

import org.eclipse.cdt.core.testplugin.util.BaseTestCase;
import org.eclipse.cdt.internal.core.pdom.db.ChunkCache;
import org.eclipse.cdt.internal.core.pdom.db.Database;
import org.eclipse.cdt.internal.core.pdom.db.PDOMStringSet;

import junit.framework.Test;

// copy/pasted from BTreeTests
public class PDOMStringSetTests extends BaseTestCase {
	protected File dbFile;
	protected Database db;
	protected PDOMStringSet stringSet;
	protected int rootRecord;

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

	@Override
	protected void setUp() throws Exception {
		super.setUp();

		dbFile = File.createTempFile("pdomstringsettest", "db");
		db = new Database(dbFile, new ChunkCache(), 0, false);
		db.setExclusiveLock();
		rootRecord = Database.DATA_AREA;
		stringSet = new PDOMStringSet(db, rootRecord);
	}

	@Override
	protected void tearDown() throws Exception {
		db.close();
		dbFile.deleteOnExit();

		super.tearDown();
	}

	// Quick tests to exercise the basic functionality.
	public void testInterface() throws Exception {
		long val1_rec_a = stringSet.add("val1");
		long val2_rec_a = stringSet.add("val2");
		long val1_rec_b = stringSet.add("val1");
		assertTrue(val1_rec_a != 0);
		assertTrue(val2_rec_a != 0);
		assertEquals(val1_rec_a, val1_rec_b);

		long val1_find = stringSet.find("val1");
		long val2_find = stringSet.find("val2");
		assertEquals(val1_rec_a, val1_find);
		assertEquals(val2_rec_a, val2_find);

		long val1_rm = stringSet.remove("val1");
		assertEquals(val1_rec_a, val1_rm);
		assertEquals(0, stringSet.find("val1"));
		assertEquals(val2_rec_a, stringSet.find("val2"));

		stringSet.clearCaches();
		assertEquals(val2_rec_a, stringSet.find("val2"));
		assertEquals(0, stringSet.find("val1"));
	}
}

Back to the top