/* * (C) Copyright 2006-2008 Nuxeo SA (http://nuxeo.com/) and others. * * 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. * * Contributors: * Stephane Lacoin (Nuxeo EP Software Engineer) */ package org.nuxeo.ecm.platform.audit; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import java.io.Serializable; import java.util.HashMap; import java.util.Map; import javax.inject.Inject; import org.jboss.el.ExpressionFactoryImpl; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.nuxeo.ecm.core.api.CoreSession; import org.nuxeo.ecm.core.api.DocumentModel; import org.nuxeo.ecm.core.event.EventContext; import org.nuxeo.ecm.core.event.impl.DocumentEventContext; import org.nuxeo.ecm.core.test.CoreFeature; import org.nuxeo.ecm.platform.el.ExpressionContext; import org.nuxeo.ecm.platform.el.ExpressionEvaluator; import org.nuxeo.runtime.test.runner.Features; import org.nuxeo.runtime.test.runner.FeaturesRunner; @RunWith(FeaturesRunner.class) @Features(CoreFeature.class) public class TestExtendedInfoEvaluation { @Inject protected CoreSession session; protected ExpressionEvaluator evaluatorUnderTest; @Before public void setUp() { evaluatorUnderTest = new ExpressionEvaluator(new ExpressionFactoryImpl()); } protected DocumentModel doCreateDocument() { DocumentModel rootDocument = session.getRootDocument(); DocumentModel model = session.createDocumentModel(rootDocument.getPathAsString(), "youps", "File"); model.setProperty("dublincore", "title", "huum"); return session.createDocument(model); } @Test public void testBean() { ExpressionContext context = new ExpressionContext(); DocumentModel source = doCreateDocument(); EventContext eventContext = new DocumentEventContext(session, session.getPrincipal(), source); Map<String, Serializable> properties = new HashMap<String, Serializable>(); properties.put("test", "test"); eventContext.setProperties(properties); evaluatorUnderTest.bindValue(context, "context", eventContext); DocumentModel value = evaluatorUnderTest.evaluateExpression(context, "${context.arguments[0]}", DocumentModel.class); assertNotNull(value); assertEquals(source, value); String test = evaluatorUnderTest.evaluateExpression(context, "${context.properties.test}", String.class); assertNotNull(value); assertEquals("test", test); } }