diff options
Diffstat (limited to 'test/org/traccar')
-rw-r--r-- | test/org/traccar/web/WebServerInitialContextTest.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/org/traccar/web/WebServerInitialContextTest.java b/test/org/traccar/web/WebServerInitialContextTest.java new file mode 100644 index 000000000..dd072863c --- /dev/null +++ b/test/org/traccar/web/WebServerInitialContextTest.java @@ -0,0 +1,27 @@ +package org.traccar.web; + +import org.junit.Test; + +import javax.naming.Context; +import javax.naming.InitialContext; +import javax.naming.NamingException; +import javax.sql.DataSource; +import java.lang.reflect.InvocationHandler; +import java.lang.reflect.Method; +import java.lang.reflect.Proxy; + +public class WebServerInitialContextTest { + @Test + public void smokeTest() throws NamingException { + DataSource mockDataSource = (DataSource) Proxy.newProxyInstance(getClass().getClassLoader(), + new Class[]{DataSource.class}, new InvocationHandler() { + @Override + public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { + return null; + } + }); + + Context context = new InitialContext(); + context.bind("java:/DefaultDS", mockDataSource); + } +} |