Search in sources :

Example 21 with VirtualFileClasspath

use of org.webpieces.util.file.VirtualFileClasspath in project webpieces by deanhiller.

the class TestJson method setUp.

@Before
public void setUp() {
    VirtualFileClasspath metaFile = new VirtualFileClasspath("jsonMeta.txt", WebserverForTest.class.getClassLoader());
    WebserverForTest webserver = new WebserverForTest(platformOverrides, null, false, metaFile);
    webserver.start();
    http11Socket = http11Simulator.openHttp();
}
Also used : WebserverForTest(org.webpieces.webserver.WebserverForTest) VirtualFileClasspath(org.webpieces.util.file.VirtualFileClasspath) Before(org.junit.Before)

Example 22 with VirtualFileClasspath

use of org.webpieces.util.file.VirtualFileClasspath in project webpieces by deanhiller.

the class TestStylesheetScriptTags method setUp.

@Before
public void setUp() {
    VirtualFileClasspath metaFile = new VirtualFileClasspath("tagsMeta.txt", WebserverForTest.class.getClassLoader());
    WebserverForTest webserver = new WebserverForTest(platformOverrides, null, false, metaFile);
    webserver.start();
    http11Socket = http11Simulator.openHttp();
}
Also used : WebserverForTest(org.webpieces.webserver.WebserverForTest) VirtualFileClasspath(org.webpieces.util.file.VirtualFileClasspath) Before(org.junit.Before)

Example 23 with VirtualFileClasspath

use of org.webpieces.util.file.VirtualFileClasspath in project webpieces by deanhiller.

the class TestScopesSelenium method setUp.

@Ignore
@Before
public void setUp() throws InterruptedException, ClassNotFoundException {
    Asserts.assertWasCompiledWithParamNames("test");
    VirtualFileClasspath metaFile = new VirtualFileClasspath("scopesMeta.txt", WebserverForTest.class.getClassLoader());
    WebserverForTest webserver = new WebserverForTest(new SeleniumOverridesForTest(), null, true, metaFile);
    webserver.start();
    port = webserver.getUnderlyingHttpChannel().getLocalAddress().getPort();
}
Also used : WebserverForTest(org.webpieces.webserver.WebserverForTest) VirtualFileClasspath(org.webpieces.util.file.VirtualFileClasspath) SeleniumOverridesForTest(org.webpieces.webserver.test.SeleniumOverridesForTest) Before(org.junit.Before) Ignore(org.junit.Ignore)

Example 24 with VirtualFileClasspath

use of org.webpieces.util.file.VirtualFileClasspath in project webpieces by deanhiller.

the class TestGetSetTags method setUp.

@Before
public void setUp() {
    VirtualFileClasspath metaFile = new VirtualFileClasspath("tagsMeta.txt", WebserverForTest.class.getClassLoader());
    WebserverForTest webserver = new WebserverForTest(platformOverrides, null, false, metaFile);
    webserver.start();
    http11Socket = http11Simulator.openHttp();
}
Also used : WebserverForTest(org.webpieces.webserver.WebserverForTest) VirtualFileClasspath(org.webpieces.util.file.VirtualFileClasspath) Before(org.junit.Before)

Example 25 with VirtualFileClasspath

use of org.webpieces.util.file.VirtualFileClasspath in project webpieces by deanhiller.

the class TestIfGenerator method setUp.

@Before
public void setUp() {
    VirtualFileClasspath metaFile = new VirtualFileClasspath("tagsMeta.txt", WebserverForTest.class.getClassLoader());
    WebserverForTest webserver = new WebserverForTest(platformOverrides, null, false, metaFile);
    webserver.start();
    http11Socket = http11Simulator.openHttp();
}
Also used : WebserverForTest(org.webpieces.webserver.WebserverForTest) VirtualFileClasspath(org.webpieces.util.file.VirtualFileClasspath) Before(org.junit.Before)

Aggregations

VirtualFileClasspath (org.webpieces.util.file.VirtualFileClasspath)30 Before (org.junit.Before)29 WebserverForTest (org.webpieces.webserver.WebserverForTest)29 JdbcApi (org.webpieces.ddl.api.JdbcApi)4 TestConfig (org.webpieces.webserver.TestConfig)4 SeleniumOverridesForTest (org.webpieces.webserver.test.SeleniumOverridesForTest)3 Module (com.google.inject.Module)1 FileNotFoundException (java.io.FileNotFoundException)1 InputStream (java.io.InputStream)1 Ignore (org.junit.Ignore)1 TemplateImpl (org.webpieces.templating.impl.TemplateImpl)1 VirtualFile (org.webpieces.util.file.VirtualFile)1 TagOverridesModule (org.webpieces.webserver.api.TagOverridesModule)1