aboutsummaryrefslogtreecommitdiffstats
path: root/store/src/test/java/org/eclipse/viatra/solver/data/map/tests/fuzz/MultiThreadTestRunnable.java
blob: a18298a217eecb8cbf7787bfb71961d79d64a913 (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
package org.eclipse.viatra.solver.data.map.tests.fuzz;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Random;

import org.eclipse.viatra.solver.data.map.VersionedMapStore;
import org.eclipse.viatra.solver.data.map.internal.VersionedMapImpl;
import org.eclipse.viatra.solver.data.map.tests.utils.MapTestEnvironment;

public class MultiThreadTestRunnable implements Runnable {
	String scenario;
	VersionedMapStore<Integer, String> store;
	int steps;
	int maxKey;
	String[] values;
	int seed;
	int commitFrequency;
	List<Throwable> errors = new LinkedList<>();
	
	public MultiThreadTestRunnable(String scenario, VersionedMapStore<Integer, String> store, int steps,
			int maxKey, String[] values, int seed, int commitFrequency) {
		super();
		this.scenario = scenario;
		this.store = store;
		this.steps = steps;
		this.maxKey = maxKey;
		this.values = values;
		this.seed = seed;
		this.commitFrequency = commitFrequency;
	}

	private void logAndThrowError(String message) {
		AssertionError error = new AssertionError(message);
		errors.add(error);
	}
	
	public List<Throwable> getErrors() {
		return errors;
	}
	
	@Override
	public void run() {
		// 1. build a map with versions
		Random r = new Random(seed);
		VersionedMapImpl<Integer, String> versioned = (VersionedMapImpl<Integer, String>) store.createMap();
		Map<Integer, Long> index2Version = new HashMap<>();

		for (int i = 0; i < steps; i++) {
			int index = i + 1;
			int nextKey = r.nextInt(maxKey);
			String nextValue = values[r.nextInt(values.length)];
			try {
				versioned.put(nextKey, nextValue);
			} catch (Exception exception) {
				exception.printStackTrace();
				logAndThrowError(scenario + ":" + index + ": exception happened: " + exception);
			}
			if (index % commitFrequency == 0) {
				long version = versioned.commit();
				index2Version.put(i, version);
			}
			MapTestEnvironment.printStatus(scenario, index, steps, "building");
		}
		// 2. create a non-versioned 
		VersionedMapImpl<Integer, String> reference = (VersionedMapImpl<Integer, String>) store.createMap();
		r = new Random(seed);
		Random r2 = new Random(seed+1);

		for (int i = 0; i < steps; i++) {
			int index = i + 1;
			int nextKey = r.nextInt(maxKey);
			String nextValue = values[r.nextInt(values.length)];
			try {
				reference.put(nextKey, nextValue);
			} catch (Exception exception) {
				exception.printStackTrace();
				logAndThrowError(scenario + ":" + index + ": exception happened: " + exception);
			}
			// go back to an existing state and compare to the reference
			if (index % (commitFrequency) == 0) {
				versioned.restore(index2Version.get(i));
				MapTestEnvironment.compareTwoMaps(scenario + ":" + index, reference, versioned,errors);
				
				// go back to a random state (probably created by another thread)
				List<Long> states = new ArrayList<>(store.getStates());
				Collections.shuffle(states, r2);
				for(Long state : states.subList(0, Math.min(states.size(), 100))) {
					versioned.restore(state);
				}
				versioned.restore(index2Version.get(i));
			}

			MapTestEnvironment.printStatus(scenario, index, steps, "comparison");
		}
	}
}