/* * Copyright 2013 Future Systems * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.araqne.logdb.query.parser; import org.araqne.logdb.BaseQueryScript; import org.araqne.logdb.QueryContext; import org.araqne.logdb.QueryParserService; import org.araqne.logdb.QueryScriptRegistry; import org.araqne.logdb.impl.FunctionRegistryImpl; import org.araqne.logdb.query.command.Script; import org.araqne.logdb.query.engine.QueryParserServiceImpl; import org.junit.Before; import org.junit.Test; import org.osgi.framework.BundleContext; import static org.mockito.Mockito.*; import static org.junit.Assert.*; public class ScriptParserTest { private QueryParserService queryParserService; @Before public void setup() { QueryParserServiceImpl p = new QueryParserServiceImpl(); p.setFunctionRegistry(new FunctionRegistryImpl()); queryParserService = p; } @Test public void testSimpleQuery() { MockQueryScript mockScript = new MockQueryScript(); BundleContext bc = null; QueryScriptRegistry scriptRegistry = mock(QueryScriptRegistry.class); when(scriptRegistry.newScript("localhost", "sample", null)).thenReturn(mockScript); ScriptParser parser = new ScriptParser(bc, scriptRegistry); parser.setQueryParserService(queryParserService); QueryContext context = new QueryContext(null); Script script = (Script) parser.parse(context, "script sample"); assertEquals(mockScript, script.getQueryScript()); assertEquals("sample", script.getScriptName()); assertEquals("script sample", script.toString()); } @Test public void testScriptQueryWithArgs() { MockQueryScript mockScript = new MockQueryScript(); BundleContext bc = null; QueryScriptRegistry scriptRegistry = mock(QueryScriptRegistry.class); when(scriptRegistry.newScript("localhost", "sample", null)).thenReturn(mockScript); ScriptParser parser = new ScriptParser(bc, scriptRegistry); parser.setQueryParserService(queryParserService); QueryContext context = new QueryContext(null); Script script = (Script) parser.parse(context, "script key1=value1 key2=value2 sample"); assertEquals(mockScript, script.getQueryScript()); assertEquals("sample", script.getScriptName()); assertEquals(2, script.getParameters().size()); assertEquals("value1", script.getParameters().get("key1")); assertEquals("value2", script.getParameters().get("key2")); assertEquals("script key1=value1 key2=value2 sample", script.toString()); } private static class MockQueryScript extends BaseQueryScript { } }