fix tests and configuration
This commit is contained in:
Simon Fortier 2019-04-23 16:39:35 -04:00 committed by GitHub
commit 6e4b2358af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 59 additions and 16 deletions

View File

@ -77,6 +77,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<forkMode>never</forkMode>
<workingDirectory>./src/main/resources</workingDirectory>
</configuration>
</plugin>

View File

@ -5,12 +5,29 @@ import org.junit.Test;
import static org.junit.Assert.*;
import java.io.File;
public class MemoryTest {
ServerConfiguration getConfig() {
String filePath = "config.properties";
if (!new File(filePath).exists()) {
File fallback = new File("Server/src/main/resources/", filePath);
if (fallback.exists()) {
filePath = fallback.getAbsolutePath();
} else {
throw new AssertionError("'config.properties' and 'Server/src/main/resources/config.properties' cannot be found with working directory: " + new File("").getAbsolutePath());
}
}
ServerConfiguration config = new ServerConfiguration(filePath);
return config;
}
@Test
public void getSet() {
ServerConfiguration config = new ServerConfiguration("config.properties");
int memorySize = config.getInt("memory_size");
int memorySize = getConfig().getInt("memory_size");
Memory memory = new Memory(memorySize);
memory.set(1, 1);
@ -28,12 +45,9 @@ public class MemoryTest {
@Test
public void write() {
ServerConfiguration config = new ServerConfiguration("config.properties");
int memorySize = config.getInt("memory_size");
int memorySize = getConfig().getInt("memory_size");
Memory memory = new Memory(memorySize);
assertTrue(memory.write(0, new char[memorySize], 0, memorySize));
assertFalse(memory.write(0, new char[memorySize], 0, memorySize + 1));
assertFalse(memory.write(0, new char[memorySize], 0, -1));

View File

@ -9,17 +9,32 @@ import org.junit.Test;
import static org.junit.Assert.*;
import java.io.File;
public class AddInstructionTest {
ServerConfiguration getConfig() {
String filePath = "config.properties";
if (!new File(filePath).exists()) {
File fallback = new File("Server/src/main/resources/", filePath);
if (fallback.exists()) {
filePath = fallback.getAbsolutePath();
} else {
throw new AssertionError("'config.properties' and 'Server/src/main/resources/config.properties' cannot be found with working directory: " + new File("").getAbsolutePath());
}
}
ServerConfiguration config = new ServerConfiguration(filePath);
return config;
}
/**
* ADD mem/reg, mem/reg
*/
@Test
public void addTargetTarget() {
ServerConfiguration config = new ServerConfiguration("config.properties");
int memorySize = config.getInt("memory_size");
int memorySize = getConfig().getInt("memory_size");
//Memory
Memory memory = new Memory(memorySize);
@ -129,8 +144,7 @@ public class AddInstructionTest {
*/
@Test
public void addTargetImm() {
ServerConfiguration config = new ServerConfiguration("config.properties");
int memorySize = config.getInt("memory_size");
int memorySize = getConfig().getInt("memory_size");
//Memory
Memory memory = new Memory(memorySize);

View File

@ -7,13 +7,29 @@ import org.junit.Test;
import static org.junit.Assert.assertEquals;
import java.io.File;
public class AndInstructionTest {
ServerConfiguration getConfig() {
String filePath = "config.properties";
if (!new File(filePath).exists()) {
File fallback = new File("Server/src/main/resources/", filePath);
if (fallback.exists()) {
filePath = fallback.getAbsolutePath();
} else {
throw new AssertionError("'config.properties' and 'Server/src/main/resources/config.properties' cannot be found with working directory: " + new File("").getAbsolutePath());
}
}
ServerConfiguration config = new ServerConfiguration(filePath);
return config;
}
@Test
public void executeTargetTarget() {
ServerConfiguration config = new ServerConfiguration("config.properties");
int memorySize = config.getInt("memory_size");
int memorySize = getConfig().getInt("memory_size");
//Memory
Memory memory = new Memory(memorySize);
@ -53,9 +69,7 @@ public class AndInstructionTest {
@Test
public void executeTargetImm() {
ServerConfiguration config = new ServerConfiguration("config.properties");
int memorySize = config.getInt("memory_size");
int memorySize = getConfig().getInt("memory_size");
//Memory
Memory memory = new Memory(memorySize);