Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 21.3k
Expand file tree
/
Copy pathWorstFitCPUTest.java
More file actions
Latest commit
79 lines (69 loc) · 2.87 KB
/
Copy pathWorstFitCPUTest.java
File metadata and controls
79 lines (69 loc) · 2.87 KB
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
packagecom.thealgorithms.others;
importstaticorg.junit.jupiter.api.Assertions.assertEquals;
importjava.util.ArrayList;
importjava.util.Arrays;
importorg.junit.jupiter.api.Test;
/**
* author Alexandros Lemonaris
*/
classWorstFitCPUTest {
int[] sizeOfBlocks;
int[] sizeOfProcesses;
ArrayList<Integer> memAllocation = newArrayList<>();
ArrayList<Integer> testMemAllocation;
MemoryManagementAlgorithmsworstFit = newWorstFitCPU();
@Test
voidtestFitForUseOfOneBlock() {
// test1
sizeOfBlocks = newint[] {5, 12, 17, 10};
sizeOfProcesses = newint[] {10, 5, 15, 2};
memAllocation = worstFit.fitProcess(sizeOfBlocks, sizeOfProcesses);
testMemAllocation = newArrayList<>(Arrays.asList(2, 1, -255, 3));
assertEquals(testMemAllocation, memAllocation);
}
@Test
voidtestFitForEqualProcecesses() {
// test2
sizeOfBlocks = newint[] {5, 12, 17, 10};
sizeOfProcesses = newint[] {10, 10, 10, 10};
memAllocation = worstFit.fitProcess(sizeOfBlocks, sizeOfProcesses);
testMemAllocation = newArrayList<>(Arrays.asList(2, 1, 3, -255));
assertEquals(testMemAllocation, memAllocation);
}
@Test
voidtestFitForNoEmptyBlockCell() {
// test3 - could suits best, bad use of memory allocation due to worstFit algorithm
sizeOfBlocks = newint[] {5, 12, 17};
sizeOfProcesses = newint[] {5, 12, 10, 7};
memAllocation = worstFit.fitProcess(sizeOfBlocks, sizeOfProcesses);
testMemAllocation = newArrayList<>(Arrays.asList(2, 1, 2, -255));
assertEquals(testMemAllocation, memAllocation);
}
@Test
voidtestFitForSameInputDifferentQuery() {
// test4 same example different series - same results
sizeOfBlocks = newint[] {5, 12, 17};
sizeOfProcesses = newint[] {5, 7, 10, 12};
memAllocation = worstFit.fitProcess(sizeOfBlocks, sizeOfProcesses);
testMemAllocation = newArrayList<>(Arrays.asList(2, 1, 2, -255));
assertEquals(testMemAllocation, memAllocation);
}
@Test
voidtestFitForMoreBlocksNoFit() {
// test5 for more blocks than processes
sizeOfBlocks = newint[] {5, 4, -1, 3, 6};
sizeOfProcesses = newint[] {10, 11};
memAllocation = worstFit.fitProcess(sizeOfBlocks, sizeOfProcesses);
testMemAllocation = newArrayList<>(Arrays.asList(-255, -255));
assertEquals(testMemAllocation, memAllocation);
}
@Test
voidtestFitBadCase() {
// test6 for only two process fit
sizeOfBlocks = newint[] {7, 17, 7, 5, 6};
sizeOfProcesses = newint[] {8, 10, 10, 8, 8, 8};
memAllocation = worstFit.fitProcess(sizeOfBlocks, sizeOfProcesses);
testMemAllocation = newArrayList<>(Arrays.asList(1, -255, -255, 1, -255, -255));
assertEquals(testMemAllocation, memAllocation);
}
}