blob: af3a142044047390298cd8b1f703853b2276c6f8 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The SF licenses this file
* to you 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.apache.sling.hc.core.impl;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import org.apache.commons.lang3.reflect.FieldUtils;
import org.apache.sling.hc.api.Result;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Matchers;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public class ScriptableHealthCheckTest {
private ScriptableHealthCheck hc;
private final JmxScriptBindingsProvider jmxScriptBindingsProvider = new JmxScriptBindingsProvider();
private void assertExpression(String expression, String languageExtension, boolean expected) throws Exception {
final ScriptEngine rhino = new ScriptEngineManager().getEngineByExtension("js");
assertNotNull("With the rhino jar in our classpath, we should get a js script engine", rhino);
final ScriptEngineManager manager = mock(ScriptEngineManager.class);
when(manager.getEngineByExtension(Matchers.same("ecma"))).thenReturn(rhino);
FieldUtils.writeDeclaredField(hc, "scriptEngineManager", manager, true);
final ScriptableHealthCheckConfiguration configuration = mock(ScriptableHealthCheckConfiguration.class);
when(configuration.expression()).thenReturn(expression);
if (languageExtension != null) {
when(configuration.language_extension()).thenReturn(languageExtension);
} else {
when(configuration.language_extension()).thenReturn("ecma");
}
hc.activate(configuration);
final Result r = hc.execute();
assertEquals("Expecting result " + expected, expected, r.isOk());
}
@Before
public void setup() {
hc = new ScriptableHealthCheck();
hc.bindBindingsValuesProvider(jmxScriptBindingsProvider);
}
@Test
public void testSimpleExpression() throws Exception {
assertExpression("2 + 3 == 5", null, true);
}
@Test
public void testRemoveBinding() throws Exception {
final String expr = "jmx.attribute('java.lang:type=ClassLoading', 'LoadedClassCount') > 10";
assertExpression(expr, "ecma", true);
hc.unbindBindingsValuesProvider(jmxScriptBindingsProvider);
assertExpression(expr, "ecma", false);
}
@Test
public void testJmxExpression() throws Exception {
assertExpression(
"jmx.attribute('java.lang:type=ClassLoading', 'LoadedClassCount') > 10"
+ " && jmx.attribute('java.lang:type=Runtime', 'ManagementSpecVersion') > 1",
"ecma", true);
}
@Test
public void testFalseExpression() throws Exception {
assertExpression("2 + 3 == 15", null, false);
}
@Test
public void testSyntaxError() throws Exception {
assertExpression("{not [valid ok?", null, false);
}
@Test
public void testNoEngine() throws Exception {
assertExpression("2 + 3 == 5", null, true);
assertExpression("2 + 3 == 5", "groovy", false);
}
}