Package org.eurekastreams.server.action.execution

Source Code of org.eurekastreams.server.action.execution.GetSystemSettingsExecutionTest

/*
* Copyright (c) 2010 Lockheed Martin Corporation
*
* 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.
*/
package org.eurekastreams.server.action.execution;

import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertTrue;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.eurekastreams.commons.actions.context.PrincipalActionContext;
import org.eurekastreams.commons.test.IsEqualInternally;
import org.eurekastreams.server.domain.PagedSet;
import org.eurekastreams.server.domain.SystemSettings;
import org.eurekastreams.server.domain.Theme;
import org.eurekastreams.server.domain.dto.GalleryTabTemplateDTO;
import org.eurekastreams.server.domain.dto.MembershipCriteriaDTO;
import org.eurekastreams.server.domain.dto.ThemeDTO;
import org.eurekastreams.server.persistence.GalleryItemMapper;
import org.eurekastreams.server.persistence.mappers.DomainMapper;
import org.eurekastreams.server.persistence.mappers.cache.Transformer;
import org.eurekastreams.server.persistence.mappers.requests.MapperRequest;
import org.eurekastreams.server.persistence.mappers.stream.GetDomainGroupsByShortNames;
import org.eurekastreams.server.search.modelview.DomainGroupModelView;
import org.eurekastreams.server.search.modelview.PersonModelView;
import org.jmock.Expectations;
import org.jmock.Mockery;
import org.jmock.integration.junit4.JUnit4Mockery;
import org.jmock.lib.legacy.ClassImposteriser;
import org.junit.Before;
import org.junit.Test;

/**
* Test for GetSystemSettingsExecution class.
*
*/
public class GetSystemSettingsExecutionTest
{
    /**
     * Context for building mock objects.
     */
    private final Mockery context = new JUnit4Mockery()
    {
        {
            setImposteriser(ClassImposteriser.INSTANCE);
        }
    };

    /**
     * Subject under test.
     */
    private GetSystemSettingsExecution sut = null;

    /**
     * Mocked mapper for the action to look up the SystemSettings.
     */
    private DomainMapper<MapperRequest, SystemSettings> systemSettingDAO = context.mock(DomainMapper.class);

    /**
     * Mocked mapper for the SystemSettings.
     */
    private SystemSettings systemSettings = context.mock(SystemSettings.class);

    /**
     * Mapper to get the system administrator ids.
     */
    private DomainMapper<Serializable, List<PersonModelView>> systemAdminsMapper = context.mock(DomainMapper.class,
            "systemAdminsMapper");

    /**
     * the SystemSettings mapper.
     */
    private DomainMapper<MapperRequest, List<MembershipCriteriaDTO>> membershipCriteriaDAO = context.mock(
            DomainMapper.class, "membershipCriteriaDAO");

    /**
     * The GalleryTabTemplateDTO mapper.
     */
    private GalleryItemMapper<GalleryTabTemplateDTO> galleryTabTemplateDAO = context.mock(GalleryItemMapper.class,
            "galleryTabTemplateDAO");

    /**
     * The theme mapper.
     */
    private GalleryItemMapper<Theme> themeDAO = context.mock(GalleryItemMapper.class, "themeDAO");

    /**
     * Tranformer for Theme to ThemeDTO.
     */
    Transformer<List<Theme>, List<ThemeDTO>> themeTransformer = context.mock(Transformer.class);

    /**
     * Group mapper.
     */
    private GetDomainGroupsByShortNames groupMapper = context.mock(GetDomainGroupsByShortNames.class);

   
    /**
     * {@link PrincipalActionContext} mock.
     */
    private PrincipalActionContext actionContext = context.mock(PrincipalActionContext.class);

    /**
     * Max gallery item count.
     */
    private final int maxGalleryItems = 50;

    /**
     * Set up the SUT.
     */
    @Before
    public void setup()
    {
        sut = new GetSystemSettingsExecution(systemSettingDAO, systemAdminsMapper, membershipCriteriaDAO,
                galleryTabTemplateDAO, themeDAO, themeTransformer, groupMapper);
    }

    /**
     * Check that the action correctly returns the system settings, without admins.
     */
    @Test
    public final void testExecuteWithoutFullyLoading()
    {
        context.checking(new Expectations()
        {
            {
                oneOf(systemSettingDAO).execute(null);
                will(returnValue(systemSettings));               
               
                allowing(systemSettings).getSupportStreamGroupShortName();
                will(returnValue("supportstream"));
               
                oneOf(groupMapper).execute(with(any(List.class)));

                allowing(actionContext).getParams();
                will(returnValue(null));
            }
        });

        assertEquals(systemSettings, sut.execute(actionContext));
        context.assertIsSatisfied();
    }

    /**
     * Check that the action correctly returns the system settings, with admins.
     */
    @Test
    public final void testExecuteWithFullyLoading()
    {
        PersonModelView admin = new PersonModelView();
        final List<PersonModelView> adminsList = new ArrayList<PersonModelView>();
        adminsList.add(admin);

        final Set<PersonModelView> adminsSet = new HashSet<PersonModelView>();
        adminsSet.add(admin);

        final List<MembershipCriteriaDTO> mcdtos = new ArrayList<MembershipCriteriaDTO>(Arrays
                .asList(new MembershipCriteriaDTO(5L, "foo", null, null, null, null)));

        final PagedSet<GalleryTabTemplateDTO> gtts = new PagedSet<GalleryTabTemplateDTO>(0, 50, 0,
                new ArrayList<GalleryTabTemplateDTO>(0));
        final PagedSet<Theme> themes = new PagedSet<Theme>(0, 50, 0, new ArrayList<Theme>(0));
        final List<ThemeDTO> themeDTOs = new ArrayList<ThemeDTO>(0);

        final List<DomainGroupModelView> groups = new ArrayList<DomainGroupModelView>();
        groups.add(new DomainGroupModelView());
       
        context.checking(new Expectations()
        {
            {
                oneOf(systemSettingDAO).execute(null);
                will(returnValue(systemSettings));

                oneOf(systemSettings).setSystemAdministrators(with(IsEqualInternally.equalInternally(adminsSet)));

                allowing(systemSettings).getSystemAdministrators();
                will(returnValue(adminsSet));

                allowing(actionContext).getParams();
                will(returnValue(new Boolean(true)));

                oneOf(systemAdminsMapper).execute(null);
                will(returnValue(adminsList));

                oneOf(membershipCriteriaDAO).execute(null);
                will(returnValue(mcdtos));

                oneOf(systemSettings).setMembershipCriteria((with(IsEqualInternally.equalInternally(mcdtos))));

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(mcdtos));

                oneOf(galleryTabTemplateDAO).findSortedByRecent(0, maxGalleryItems);
                will(returnValue(gtts));

                oneOf(systemSettings).setGalleryTabTemplates(
                        (with(IsEqualInternally.equalInternally(gtts.getPagedSet()))));

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(gtts));
               
                allowing(systemSettings).getSupportStreamGroupShortName();
                will(returnValue("supportstream"));
               
                oneOf(groupMapper).execute(with(any(List.class)));

                oneOf(themeDAO).findSortedByRecent(0, maxGalleryItems);
                will(returnValue(themes));

                oneOf(themeTransformer).transform(with(IsEqualInternally.equalInternally(themes.getPagedSet())));
                will(returnValue(themeDTOs));

                oneOf(systemSettings).setThemes(themeDTOs);

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(themes));
            }
        });

        assertEquals(systemSettings, sut.execute(actionContext));
        assertEquals(1, systemSettings.getSystemAdministrators().size());
        assertTrue(systemSettings.getSystemAdministrators().contains(admin));
        assertEquals("foo", systemSettings.getMembershipCriteria().get(0).getCriteria());
        context.assertIsSatisfied();
    }
   

    /**
     * Check that the action correctly returns the system settings, with admins.
     */
    @Test
    public final void testExecuteWithFullyLoadingNullSupportStream()
    {
        PersonModelView admin = new PersonModelView();
        final List<PersonModelView> adminsList = new ArrayList<PersonModelView>();
        adminsList.add(admin);

        final Set<PersonModelView> adminsSet = new HashSet<PersonModelView>();
        adminsSet.add(admin);

        final List<MembershipCriteriaDTO> mcdtos = new ArrayList<MembershipCriteriaDTO>(Arrays
                .asList(new MembershipCriteriaDTO(5L, "foo", null, null, null, null)));

        final PagedSet<GalleryTabTemplateDTO> gtts = new PagedSet<GalleryTabTemplateDTO>(0, 50, 0,
                new ArrayList<GalleryTabTemplateDTO>(0));
        final PagedSet<Theme> themes = new PagedSet<Theme>(0, 50, 0, new ArrayList<Theme>(0));
        final List<ThemeDTO> themeDTOs = new ArrayList<ThemeDTO>(0);

        context.checking(new Expectations()
        {
            {
                oneOf(systemSettingDAO).execute(null);
                will(returnValue(systemSettings));

                oneOf(systemSettings).setSystemAdministrators(with(IsEqualInternally.equalInternally(adminsSet)));

                allowing(systemSettings).getSystemAdministrators();
                will(returnValue(adminsSet));

                allowing(actionContext).getParams();
                will(returnValue(new Boolean(true)));

                oneOf(systemAdminsMapper).execute(null);
                will(returnValue(adminsList));

                oneOf(membershipCriteriaDAO).execute(null);
                will(returnValue(mcdtos));

                oneOf(systemSettings).setMembershipCriteria((with(IsEqualInternally.equalInternally(mcdtos))));

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(mcdtos));

                oneOf(galleryTabTemplateDAO).findSortedByRecent(0, maxGalleryItems);
                will(returnValue(gtts));

                oneOf(systemSettings).setGalleryTabTemplates(
                        (with(IsEqualInternally.equalInternally(gtts.getPagedSet()))));

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(gtts));
               
                allowing(systemSettings).getSupportStreamGroupShortName();
                will(returnValue(null));
               
                oneOf(themeDAO).findSortedByRecent(0, maxGalleryItems);
                will(returnValue(themes));

                oneOf(themeTransformer).transform(with(IsEqualInternally.equalInternally(themes.getPagedSet())));
                will(returnValue(themeDTOs));

                oneOf(systemSettings).setThemes(themeDTOs);

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(themes));
            }
        });

        assertEquals(systemSettings, sut.execute(actionContext));
        assertEquals(1, systemSettings.getSystemAdministrators().size());
        assertTrue(systemSettings.getSystemAdministrators().contains(admin));
        assertEquals("foo", systemSettings.getMembershipCriteria().get(0).getCriteria());
        context.assertIsSatisfied();
    }
   
   
   

    /**
     * Check that the action correctly returns the system settings, with admins.
     */
    @Test
    public final void testExecuteWithFullyLoadingZeroLengthSupportStream()
    {
        PersonModelView admin = new PersonModelView();
        final List<PersonModelView> adminsList = new ArrayList<PersonModelView>();
        adminsList.add(admin);

        final Set<PersonModelView> adminsSet = new HashSet<PersonModelView>();
        adminsSet.add(admin);

        final List<MembershipCriteriaDTO> mcdtos = new ArrayList<MembershipCriteriaDTO>(Arrays
                .asList(new MembershipCriteriaDTO(5L, "foo", null, null, null, null)));

        final PagedSet<GalleryTabTemplateDTO> gtts = new PagedSet<GalleryTabTemplateDTO>(0, 50, 0,
                new ArrayList<GalleryTabTemplateDTO>(0));
        final PagedSet<Theme> themes = new PagedSet<Theme>(0, 50, 0, new ArrayList<Theme>(0));
        final List<ThemeDTO> themeDTOs = new ArrayList<ThemeDTO>(0);

        context.checking(new Expectations()
        {
            {
                oneOf(systemSettingDAO).execute(null);
                will(returnValue(systemSettings));

                oneOf(systemSettings).setSystemAdministrators(with(IsEqualInternally.equalInternally(adminsSet)));

                allowing(systemSettings).getSystemAdministrators();
                will(returnValue(adminsSet));

                allowing(actionContext).getParams();
                will(returnValue(new Boolean(true)));

                oneOf(systemAdminsMapper).execute(null);
                will(returnValue(adminsList));

                oneOf(membershipCriteriaDAO).execute(null);
                will(returnValue(mcdtos));

                oneOf(systemSettings).setMembershipCriteria((with(IsEqualInternally.equalInternally(mcdtos))));

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(mcdtos));

                oneOf(galleryTabTemplateDAO).findSortedByRecent(0, maxGalleryItems);
                will(returnValue(gtts));

                oneOf(systemSettings).setGalleryTabTemplates(
                        (with(IsEqualInternally.equalInternally(gtts.getPagedSet()))));

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(gtts));
               
                allowing(systemSettings).getSupportStreamGroupShortName();
                will(returnValue(""));
               
                oneOf(themeDAO).findSortedByRecent(0, maxGalleryItems);
                will(returnValue(themes));

                oneOf(themeTransformer).transform(with(IsEqualInternally.equalInternally(themes.getPagedSet())));
                will(returnValue(themeDTOs));

                oneOf(systemSettings).setThemes(themeDTOs);

                allowing(systemSettings).getMembershipCriteria();
                will(returnValue(themes));
            }
        });

        assertEquals(systemSettings, sut.execute(actionContext));
        assertEquals(1, systemSettings.getSystemAdministrators().size());
        assertTrue(systemSettings.getSystemAdministrators().contains(admin));
        assertEquals("foo", systemSettings.getMembershipCriteria().get(0).getCriteria());
        context.assertIsSatisfied();
    }
}
TOP

Related Classes of org.eurekastreams.server.action.execution.GetSystemSettingsExecutionTest

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.