/* * 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.parseable; import java.util.IllegalFormatWidthException; import org.apache.isis.core.metamodel.services.persistsession.PersistenceSessionServiceInternal; import org.jmock.Expectations; import org.jmock.auto.Mock; import org.junit.Before; import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.apache.isis.applib.adapters.Parser; import org.apache.isis.applib.adapters.ParsingException; import org.apache.isis.core.commons.authentication.AuthenticationSessionProvider; import org.apache.isis.core.metamodel.consent.InteractionInitiatedBy; import org.apache.isis.core.metamodel.facetapi.FacetHolder; import org.apache.isis.core.metamodel.facets.object.parseable.parser.ParseableFacetUsingParser; import org.apache.isis.core.metamodel.facets.object.value.ValueFacet; import org.apache.isis.core.metamodel.services.ServicesInjector; import org.apache.isis.core.unittestsupport.jmocking.JUnitRuleMockery2; import org.apache.isis.core.unittestsupport.jmocking.JUnitRuleMockery2.Mode; public class ParseableFacetUsingParserTest { @Rule public JUnitRuleMockery2 context = JUnitRuleMockery2.createFor(Mode.INTERFACES_AND_CLASSES); @Mock private FacetHolder mockFacetHolder; @Mock private AuthenticationSessionProvider mockAuthenticationSessionProvider; @Mock private ServicesInjector mockServicesInjector; @Mock private PersistenceSessionServiceInternal mockAdapterManager; private ParseableFacetUsingParser parseableFacetUsingParser; @Before public void setUp() throws Exception { context.checking(new Expectations() { { never(mockAuthenticationSessionProvider); never(mockAdapterManager); allowing(mockFacetHolder).containsFacet(ValueFacet.class); will(returnValue(Boolean.FALSE)); allowing(mockServicesInjector).injectServicesInto(with(any(Object.class))); allowing(mockServicesInjector).getAuthenticationSessionProvider(); will(returnValue(mockAuthenticationSessionProvider)); allowing(mockServicesInjector).getPersistenceSessionServiceInternal(); will(returnValue(mockAdapterManager)); allowing(mockServicesInjector).lookupService(AuthenticationSessionProvider.class); will(returnValue(mockAuthenticationSessionProvider)); } }); final Parser<String> parser = new Parser<String>() { @Override public String parseTextEntry(final Object contextPojo, final String entry) { if (entry.equals("invalid")) { throw new ParsingException(); } if (entry.equals("number")) { throw new NumberFormatException(); } if (entry.equals("format")) { throw new IllegalFormatWidthException(2); } return entry.toUpperCase(); } @Override public int typicalLength() { return 0; } @Override public String displayTitleOf(final String object) { return null; } @Override public String displayTitleOf(final String object, final String usingMask) { return null; } @Override public String parseableTitleOf(final String existing) { return null; } }; parseableFacetUsingParser = new ParseableFacetUsingParser(parser, mockFacetHolder, mockServicesInjector); } @Ignore @Test public void testParseNormalEntry() throws Exception { // TODO why is this so complicated to check!!! /* * final AuthenticationSession session = * mockery.mock(AuthenticationSession.class); * * mockery.checking(new Expectations(){{ * one(mockAdapterManager).adapterFor("XXX"); * will(returnValue(mockAdapter)); * * one(mockAdapter).getSpecification(); * will(returnValue(mockSpecification)); * * one(mockAuthenticationSessionProvider).getAuthenticationSession(); * will(returnValue(session)); * * allowing(mockSpecification).createValidityInteractionContext(session, * InteractionInvocationMethod.USER, mockAdapter); }}); ObjectAdapter * adapter = parseableFacetUsingParser.parseTextEntry(null, "xxx"); * * adapter.getObject(); */ } @Test(expected = TextEntryParseException.class) public void parsingExceptionRethrown() throws Exception { parseableFacetUsingParser.parseTextEntry(null, "invalid", InteractionInitiatedBy.USER); } @Test(expected = TextEntryParseException.class) public void numberFormatExceptionRethrown() throws Exception { parseableFacetUsingParser.parseTextEntry(null, "number", InteractionInitiatedBy.USER); } @Test(expected = TextEntryParseException.class) public void illegalFormatExceptionRethrown() throws Exception { parseableFacetUsingParser.parseTextEntry(null, "format", InteractionInitiatedBy.USER); } }