/* * Copyright (c) 2002-2014, Mairie de Paris * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright notice * and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice * and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * License 1.0 */ package fr.paris.lutece.portal.web.features; import fr.paris.lutece.portal.business.right.Right; import fr.paris.lutece.portal.business.right.RightHome; import fr.paris.lutece.portal.business.user.AdminUser; import fr.paris.lutece.portal.service.admin.AccessDeniedException; import fr.paris.lutece.test.LuteceTestCase; import org.junit.Test; import fr.paris.lutece.test.MokeHttpServletRequest; import org.junit.After; import org.junit.Before; public class ExternalFeaturesJspBeanTest extends LuteceTestCase { private static final String PARAMETER_ID_EXTERNAL_FEAUTRE = "external_feature_id"; private static final String TEST_EXTERNAL_FEATURE_ID = "CORE_TEST"; //To insert moke external feature private static final String RIGHT_ID = "CORE_TEST"; private static final String NAMEKEY = "nameKeyTest"; private static final String DESCRIPTIONKEY = "descriptionKeyTest"; private static final int LEVEL = 0; private static final String URL = "urlTest"; private static final String PLUGINNAME = "pluginNameTest"; private static final String FEATUREGROUP = "featureGroupTest"; private static final String ICONURL = "iconUrlTest"; private static final boolean IS_EXTERNAL_FEATURE = true; /** * Test of getManageExternalFeatures method, of class ExternalFeaturesJspBean. */ @Test public void testGetManageExternalFeatures() throws AccessDeniedException { System.out.println( "getManageExternalFeatures" ); MokeHttpServletRequest request = new MokeHttpServletRequest( ); request.registerAdminUserWithRigth( new AdminUser( ), ExternalFeaturesJspBean.RIGHT_EXTERNAL_FEATURES_MANAGEMENT ); ExternalFeaturesJspBean instance = new ExternalFeaturesJspBean( ); instance.init( request, ExternalFeaturesJspBean.RIGHT_EXTERNAL_FEATURES_MANAGEMENT ); instance.getManageExternalFeatures( request ); } /** * Test of getCreateExternalFeature method, of class ExternalFeaturesJspBean. */ @Test public void testGetCreateExternalFeature() throws AccessDeniedException { System.out.println( "getCreateExternalFeatures" ); MokeHttpServletRequest request = new MokeHttpServletRequest( ); request.registerAdminUserWithRigth( new AdminUser( ), ExternalFeaturesJspBean.RIGHT_EXTERNAL_FEATURES_MANAGEMENT ); ExternalFeaturesJspBean instance = new ExternalFeaturesJspBean( ); instance.init( request, ExternalFeaturesJspBean.RIGHT_EXTERNAL_FEATURES_MANAGEMENT ); instance.getManageExternalFeatures( request ); } /** * Test of getModifyExternalFeature method, of class ExternalFeaturesJspBean. */ @Test public void testGetModifyExternalFeature() throws AccessDeniedException { System.out.println( "getModifyExternalFeatures" ); Right right = new Right( ); right.setId( RIGHT_ID ); right.setNameKey( NAMEKEY ); right.setDescriptionKey( DESCRIPTIONKEY ); right.setLevel( LEVEL ); right.setUrl( URL ); right.setPluginName( PLUGINNAME ); right.setFeatureGroup( FEATUREGROUP ); right.setIconUrl( ICONURL ); right.setExternalFeature( IS_EXTERNAL_FEATURE ); RightHome.create( right ); MokeHttpServletRequest request = new MokeHttpServletRequest( ); request.addMokeParameters( PARAMETER_ID_EXTERNAL_FEAUTRE, TEST_EXTERNAL_FEATURE_ID ); request.registerAdminUserWithRigth( new AdminUser( ), ExternalFeaturesJspBean.RIGHT_EXTERNAL_FEATURES_MANAGEMENT ); ExternalFeaturesJspBean instance = new ExternalFeaturesJspBean( ); instance.init( request, ExternalFeaturesJspBean.RIGHT_EXTERNAL_FEATURES_MANAGEMENT ); instance.getModifyExternalFeature( request ); RightHome.remove( RIGHT_ID ); } /** * Test of doModifyExternalFeature method, of class ExternalFeaturesJspBean. */ @Test public void testDoModifyExternalFeature() { System.out.println( "doModifyExternalFeatures" ); //Not implemented yet } /** * Test of doCreateExternalFeature method, of class ExternalFeaturesJspBean. */ @Test public void testDoCreateExternalFeature() { System.out.println( "doCreateExternalFeature" ); //Not implemented yet } /** * Test of getRemoveExternalFeature method, of class ExternalFeaturesJspBean. */ @Test public void testGetRemoveExternalFeature() throws AccessDeniedException { System.out.println( "getRemoveExternalFeature" ); Right right = new Right( ); right.setId( RIGHT_ID ); right.setNameKey( NAMEKEY ); right.setDescriptionKey( DESCRIPTIONKEY ); right.setLevel( LEVEL ); right.setUrl( URL ); right.setPluginName( PLUGINNAME ); right.setFeatureGroup( FEATUREGROUP ); right.setIconUrl( ICONURL ); right.setExternalFeature( IS_EXTERNAL_FEATURE ); RightHome.create( right ); MokeHttpServletRequest request = new MokeHttpServletRequest( ); request.addMokeParameters( PARAMETER_ID_EXTERNAL_FEAUTRE, TEST_EXTERNAL_FEATURE_ID ); request.registerAdminUserWithRigth( new AdminUser( ), ExternalFeaturesJspBean.RIGHT_EXTERNAL_FEATURES_MANAGEMENT ); ExternalFeaturesJspBean instance = new ExternalFeaturesJspBean( ); instance.init( request, ExternalFeaturesJspBean.RIGHT_EXTERNAL_FEATURES_MANAGEMENT ); instance.getRemoveExternalFeature( request ); RightHome.remove( RIGHT_ID ); } /** * Test of doRemoveExternalFeature method, of class ExternalFeaturesJspBean. */ @Test public void testDoRemoveExternalFeature() { System.out.println( "doRemoveExternalFeatures" ); //Not implemented yet } }