/* * 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.isis.core.metamodel.facets.object.validating.validateobject; import java.lang.reflect.Method; import org.jmock.Expectations; import org.apache.isis.applib.services.i18n.TranslationService; import org.apache.isis.core.metamodel.facetapi.Facet; import org.apache.isis.core.metamodel.facets.FacetFactory.ProcessClassContext; import org.apache.isis.core.metamodel.facets.AbstractFacetFactoryTest; import org.apache.isis.core.metamodel.facets.object.validating.validateobject.method.ValidateObjectFacetMethod; import org.apache.isis.core.metamodel.facets.object.validating.validateobject.method.ValidateObjectFacetMethodFactory; import org.apache.isis.core.metamodel.services.ServicesInjector; import org.apache.isis.core.unittestsupport.jmocking.JUnitRuleMockery2; public class ObjectValidMethodFacetFactoryTest extends AbstractFacetFactoryTest { private JUnitRuleMockery2 context = JUnitRuleMockery2.createFor(JUnitRuleMockery2.Mode.INTERFACES_AND_CLASSES); private ServicesInjector mockServicesInjector; private TranslationService mockTranslationService; private ValidateObjectFacetMethodFactory facetFactory; @Override protected void setUp() throws Exception { super.setUp(); mockServicesInjector = context.mock(ServicesInjector.class); mockTranslationService = context.mock(TranslationService.class); context.checking(new Expectations() {{ allowing(mockServicesInjector).lookupService(TranslationService.class); will(returnValue(mockTranslationService)); }}); facetFactory = new ValidateObjectFacetMethodFactory(); facetFactory.setServicesInjector(mockServicesInjector); } @Override protected void tearDown() throws Exception { facetFactory = null; super.tearDown(); } public void testValidateMethodPickedUpAndMethodRemoved() { class Customer { @SuppressWarnings("unused") public String validate() { return null; } } final Method validateMethod = findMethod(Customer.class, "validate"); final ProcessClassContext processClassContext = new ProcessClassContext(Customer.class, methodRemover, facetHolder); facetFactory.process(processClassContext); final Facet facet = facetHolder.getFacet(ValidateObjectFacet.class); assertNotNull(facet); assertTrue(facet instanceof ValidateObjectFacetMethod); assertTrue(methodRemover.getRemovedMethodMethodCalls().contains(validateMethod)); } }