blob: f17c3f17d106cf6023f7926edd503852b5110aa3 [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 ASF 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.cms.core.internal;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import javax.script.Bindings;
import org.apache.sling.api.resource.ValueMap;
import org.apache.sling.cms.Page;
import org.apache.sling.cms.core.helpers.SlingCMSTestHelper;
import org.apache.sling.testing.mock.sling.junit.SlingContext;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
public class DefaultScriptBindingsValueProviderTest {
@Rule
public SlingContext context = new SlingContext();
@Before
public void init() {
SlingCMSTestHelper.initContext(context);
}
@Test
public void testPageBinding() {
Bindings bindings = new MockBindings();
context.currentResource("/content/apache/sling-apache-org/index");
bindings.put("resource", context.currentResource());
bindings.put("request", context.request());
DefaultScriptBindingsValueProvider provider = new DefaultScriptBindingsValueProvider();
provider.addBindings(bindings);
System.out.println(bindings.keySet().toString());
assertNotNull(bindings.get("page"));
assertTrue(bindings.get("page") instanceof Page);
assertNotNull(bindings.get("currentPage"));
assertEquals(bindings.get("currentPage"), bindings.get("page"));
assertNotNull(bindings.get("properties"));
assertTrue(bindings.get("properties") instanceof ValueMap);
assertNotNull(bindings.get("componentConfiguration"));
assertTrue(bindings.get("componentConfiguration") instanceof ValueMap);
}
@Test
public void testSiteBinding() {
Bindings bindings = new MockBindings();
context.currentResource("/content/apache/sling-apache-org");
bindings.put("resource", context.currentResource());
bindings.put("request", context.request());
DefaultScriptBindingsValueProvider provider = new DefaultScriptBindingsValueProvider();
provider.addBindings(bindings);
System.out.println(bindings.keySet().toString());
assertNull(bindings.get("page"));
assertNull(bindings.get("currentPage"));
assertNotNull(bindings.get("properties"));
assertTrue(bindings.get("properties") instanceof ValueMap);
assertNotNull(bindings.get("componentConfiguration"));
assertTrue(bindings.get("componentConfiguration") instanceof ValueMap);
}
}