diff options
author | Vitaly Litvak <vitavaque@gmail.com> | 2015-08-27 08:14:19 +0300 |
---|---|---|
committer | Vitaly Litvak <vitavaque@gmail.com> | 2015-08-27 08:14:19 +0300 |
commit | cde27ba6fa8f5b2966d3b60e611f575198fee85c (patch) | |
tree | 61419894fb84db1bcafdbb3891bcfe8898a508c0 /test/org/traccar/web | |
parent | 4750fe38f60024053d7ad27c97c0851790b188bc (diff) | |
download | trackermap-server-cde27ba6fa8f5b2966d3b60e611f575198fee85c.tar.gz trackermap-server-cde27ba6fa8f5b2966d3b60e611f575198fee85c.tar.bz2 trackermap-server-cde27ba6fa8f5b2966d3b60e611f575198fee85c.zip |
Added smoke test for JNDI context initialization
Diffstat (limited to 'test/org/traccar/web')
-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); + } +} |