use of org.webpieces.webserver.test.PlatformOverridesForTest in project webpieces by deanhiller.
the class TestDevRefreshPageWithNoRestarting method setUp.
@Before
public void setUp() throws ClassNotFoundException, IOException {
Asserts.assertWasCompiledWithParamNames("test");
userDir = System.getProperty("user.dir");
log.info("running from dir=" + userDir);
existingCodeLoc = new File(userDir + "/src/test/java/org/webpieces/webserver/dev/app");
//developers tend to exit their test leaving the code in a bad state so if they run it again, restore the original
//version for them(if we change the original version, we have to copy it to this directory as well though :(
File original = new File(userDir + "/src/test/devServerTest/devServerOriginal");
FileUtils.copyDirectory(original, existingCodeLoc, null);
//cache existing code for use by teardown...
stashedExistingCodeDir = new File(System.getProperty("java.io.tmpdir") + "/webpiecesTestDevServer/app");
FileUtils.copyDirectory(existingCodeLoc, stashedExistingCodeDir);
//list all source paths here as you add them(or just create for loop)
//These are the list of directories that we detect java file changes under
List<VirtualFile> srcPaths = new ArrayList<>();
srcPaths.add(new VirtualFileImpl(userDir + "/src/test/java"));
VirtualFile metaFile = new VirtualFileImpl(userDir + "/src/test/resources/devMeta.txt");
log.info("LOADING from meta file=" + metaFile.getCanonicalPath());
//html and json template file encoding...
TemplateCompileConfig templateConfig = new TemplateCompileConfig(srcPaths);
//java source files encoding...
CompileConfig devConfig = new CompileConfig(srcPaths);
Module platformOverrides = Modules.combine(new DevRouterModule(devConfig), new PlatformOverridesForTest(mgr, time, mockTimer, templateConfig));
WebserverForTest webserver = new WebserverForTest(platformOverrides, null, false, metaFile);
webserver.start();
http11Socket = http11Simulator.openHttp();
}
use of org.webpieces.webserver.test.PlatformOverridesForTest in project webpieces by deanhiller.
the class TestDevSynchronousErrors method setUp.
@Before
public void setUp() throws InterruptedException, ClassNotFoundException {
Asserts.assertWasCompiledWithParamNames("test");
String filePath1 = System.getProperty("user.dir");
log.info("running from dir=" + filePath1);
List<VirtualFile> srcPaths = new ArrayList<>();
srcPaths.add(new VirtualFileImpl(filePath1 + "/src/test/java"));
TemplateCompileConfig templateConfig = new TemplateCompileConfig(false);
Module platformOverrides = Modules.combine(new PlatformOverridesForTest(mgr, time, mockTimer, templateConfig), new ForTestingStaticDevelopmentModeModule());
//you may want to create this server ONCE in a static method BUT if you do, also remember to clear out all your
//mocks after every test AND you can no longer run single threaded(tradeoffs, tradeoffs)
//This is however pretty fast to do in many systems...
WebserverForTest webserver = new WebserverForTest(platformOverrides, new AppOverridesModule(), false, null);
webserver.start();
http11Socket = http11Simulator.openHttp();
}
Aggregations