Package org.apache.isis.core.integtestsupport.legacy

Source Code of org.apache.isis.core.integtestsupport.legacy.MemberDisabledTest

/*
*  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.integtestsupport.legacy;

import static org.apache.isis.core.commons.matchers.IsisMatchers.classEqualTo;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.fail;

import java.util.List;

import org.hamcrest.Matchers;
import org.junit.Test;

import org.apache.isis.applib.services.wrapper.DisabledException;
import org.apache.isis.core.integtestsupport.legacy.sample.domain.Order;
import org.apache.isis.core.metamodel.facets.members.disabled.annotprop.DisabledFacetAnnotation;
import org.apache.isis.core.metamodel.facets.members.disabled.method.DisableForContextFacetViaMethod;

public class MemberDisabledTest extends AbstractTest {

    @Test
    public void whenValueDisabledForValueThenThrowsException() {
        custJsDO.disableFirstName = "cannot alter";
        try {
            custJsWO.setFirstName("Dick");
            fail("Should have thrown exception");
        } catch (final DisabledException ex) {
            assertThat(ex.getAdvisorClass(), classEqualTo(DisableForContextFacetViaMethod.class));
            assertThat(ex.getIdentifier().getMemberNaturalName(), equalTo("First Name"));
            assertThat(ex.getMessage(), Matchers.containsString("cannot alter"));
        }
    }

    @Test
    public void whenValueDisabledForNullThenThrowsException() {
        custJsDO.disableFirstName = "cannot alter";
        try {
            custJsWO.setFirstName(null);
            fail("Should have thrown exception");
        } catch (final DisabledException ex) {
            assertThat(ex.getAdvisorClass(), classEqualTo(DisableForContextFacetViaMethod.class));
            assertThat(ex.getIdentifier().getMemberNaturalName(), equalTo("First Name"));
            assertThat(ex.getMessage(), Matchers.containsString("cannot alter"));
        }
    }

    @Test
    public void whenAssociationDisabledForReferenceThenThrowsException() {
        custJsDO.disableCountryOfBirth = "cannot alter";
        try {
            custJsWO.setCountryOfBirth(countryUsaDO);
            fail("Should have thrown exception");
        } catch (final DisabledException ex) {
            assertThat(ex.getAdvisorClass(), classEqualTo(DisableForContextFacetViaMethod.class));
            assertThat(ex.getIdentifier().getMemberNaturalName(), equalTo("Country Of Birth"));
            assertThat(ex.getMessage(), Matchers.containsString("cannot alter"));
        }
    }

    @Test
    public void whenAssociationDisabledForNullThenThrowsException() {
        custJsDO.disableCountryOfBirth = "cannot alter";
        try {
            custJsWO.setCountryOfBirth(null);
            fail("Should have thrown exception");
        } catch (final DisabledException ex) {
            assertThat(ex.getAdvisorClass(), classEqualTo(DisableForContextFacetViaMethod.class));
            assertThat(ex.getIdentifier().getMemberNaturalName(), equalTo("Country Of Birth"));
            assertThat(ex.getMessage(), Matchers.containsString("cannot alter"));
        }
    }

    @Test
    public void whenCollectionDisabledThenAddToThrowsException() {
        final List<Order> orders = custJsWO.getOrders();
        final Order order = orders.get(0);
        try {
            custJsWO.addToMoreOrders(order);
            fail("Should have thrown exception");
        } catch (final DisabledException ex) {
            assertThat(ex.getAdvisorClass(), classEqualTo(DisabledFacetAnnotation.class));
            assertThat(ex.getIdentifier().getMemberNaturalName(), equalTo("More Orders"));
            assertThat(ex.getMessage(), Matchers.containsString("Always disabled"));
        }
    }

    @Test
    public void whenCollectionDisabledThenRemovefromThrowsException() {
        custJsDO.addToVisitedCountries(countryUsaDO);
        custJsDO.disableVisitedCountries = "cannot alter";
        try {
            custJsWO.removeFromVisitedCountries(countryUsaDO);
            fail("Should have thrown exception");
        } catch (final DisabledException ex) {
            assertThat(ex.getAdvisorClass(), classEqualTo(DisableForContextFacetViaMethod.class));
            assertThat(ex.getIdentifier().getMemberNaturalName(), equalTo("Visited Countries"));
            assertThat(ex.getMessage(), Matchers.containsString("cannot alter"));
        }
    }

    @Test
    public void whenActionDisabledThenThrowsException() {
        custJsDO.disablePlaceOrder = "cannot invoke";
        try {
            custJsWO.placeOrder(product355DO, 3);
            fail("Should have thrown exception");
        } catch (final DisabledException ex) {
            assertThat(ex.getAdvisorClass(), classEqualTo(DisableForContextFacetViaMethod.class));
            assertThat(ex.getIdentifier().getMemberNaturalName(), equalTo("Place Order"));
            assertThat(ex.getMessage(), Matchers.containsString("cannot invoke"));
        }
    }

}
TOP

Related Classes of org.apache.isis.core.integtestsupport.legacy.MemberDisabledTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.