From cde27ba6fa8f5b2966d3b60e611f575198fee85c Mon Sep 17 00:00:00 2001 From: Vitaly Litvak Date: Thu, 27 Aug 2015 08:14:19 +0300 Subject: Added smoke test for JNDI context initialization --- .../traccar/web/WebServerInitialContextTest.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test/org/traccar/web/WebServerInitialContextTest.java (limited to 'test/org/traccar/web') 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); + } +} -- cgit v1.2.3