diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-08-27 23:11:55 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-08-27 23:11:55 +1200 |
commit | 09a99e1e3971612fe7effea976e0cd1e669f4320 (patch) | |
tree | 61419894fb84db1bcafdbb3891bcfe8898a508c0 /test/org | |
parent | 2e9842ebfa6d8b4d053d66c437a11190a0f49e6e (diff) | |
parent | cde27ba6fa8f5b2966d3b60e611f575198fee85c (diff) | |
download | trackermap-server-09a99e1e3971612fe7effea976e0cd1e669f4320.tar.gz trackermap-server-09a99e1e3971612fe7effea976e0cd1e669f4320.tar.bz2 trackermap-server-09a99e1e3971612fe7effea976e0cd1e669f4320.zip |
Merge pull request #1379 from vitalidze/master
Added smoke test for JNDI context
Diffstat (limited to 'test/org')
-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); + } +} |