Package org.broadleafcommerce.core.catalog.service

Source Code of org.broadleafcommerce.core.catalog.service.CategorySiteMapGeneratorTest

/*
* #%L
* BroadleafCommerce Framework
* %%
* Copyright (C) 2009 - 2013 Broadleaf Commerce
* %%
* 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.
* #L%
*/
package org.broadleafcommerce.core.catalog.service;

import org.broadleafcommerce.common.sitemap.exception.SiteMapException;
import org.broadleafcommerce.common.sitemap.service.SiteMapGeneratorTest;
import org.broadleafcommerce.common.sitemap.service.type.SiteMapChangeFreqType;
import org.broadleafcommerce.common.sitemap.service.type.SiteMapGeneratorType;
import org.broadleafcommerce.common.sitemap.service.type.SiteMapPriorityType;
import org.broadleafcommerce.core.catalog.dao.CategoryDao;
import org.broadleafcommerce.core.catalog.domain.Category;
import org.broadleafcommerce.core.catalog.domain.CategoryImpl;
import org.broadleafcommerce.core.catalog.domain.CategorySiteMapGeneratorConfiguration;
import org.broadleafcommerce.core.catalog.domain.CategorySiteMapGeneratorConfigurationImpl;
import org.easymock.EasyMock;
import org.junit.Test;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

/**
* Category site map generator tests
*
* @author Joshua Skorton (jskorton)
*/
public class CategorySiteMapGeneratorTest extends SiteMapGeneratorTest {

    @Test
    public void testCategorySiteMapGenerator() throws SiteMapException, IOException {

        Category rootCategory = new CategoryImpl();
        Category c1 = new CategoryImpl();
        c1.setUrl("/");
        c1.setDefaultParentCategory(rootCategory);
        Category c2 = new CategoryImpl();
        c2.setUrl("/hot-sauces");
        c2.setDefaultParentCategory(rootCategory);
        Category c3 = new CategoryImpl();
        c3.setUrl("merchandise");
        c3.setDefaultParentCategory(rootCategory);
        Category c4 = new CategoryImpl();
        c4.setUrl("/clearance");
        c4.setDefaultParentCategory(rootCategory);

        List<Category> categories = new ArrayList<Category>();
        categories.add(c1);
        categories.add(c2);
        categories.add(c3);
        categories.add(c4);

        CategoryDao categoryDao = EasyMock.createMock(CategoryDao.class);
        EasyMock.expect(categoryDao.readActiveSubCategoriesByCategory(rootCategory, 5, 0)).andReturn(categories)
                .atLeastOnce();
        EasyMock.replay(categoryDao);

        CategorySiteMapGenerator csmg = new CategorySiteMapGenerator();
        csmg.setCategoryDao(categoryDao);
        csmg.setRowLimit(5);

        CategorySiteMapGeneratorConfiguration smgc = new CategorySiteMapGeneratorConfigurationImpl();
        smgc.setDisabled(false);
        smgc.setSiteMapGeneratorType(SiteMapGeneratorType.CATEGORY);
        smgc.setSiteMapChangeFreq(SiteMapChangeFreqType.HOURLY);
        smgc.setSiteMapPriority(SiteMapPriorityType.POINT5);
        smgc.setRootCategory(rootCategory);
        smgc.setStartingDepth(1);
        smgc.setEndingDepth(1);

        testGenerator(smgc, csmg);

        File file1 = fileService.getResource("/sitemap_index.xml");
        File file2 = fileService.getResource("/sitemap1.xml");
        File file3 = fileService.getResource("/sitemap2.xml");

        compareFiles(file1, "src/test/resources/org/broadleafcommerce/sitemap/category/sitemap_index.xml");
        compareFiles(file2, "src/test/resources/org/broadleafcommerce/sitemap/category/sitemap1.xml");
        compareFiles(file3, "src/test/resources/org/broadleafcommerce/sitemap/category/sitemap2.xml");

        testGenerator(smgc, csmg, 50000);
        File file4 = fileService.getResource("/sitemap.xml");

        compareFiles(file4, "src/test/resources/org/broadleafcommerce/sitemap/category/sitemap.xml");

    }

}
TOP

Related Classes of org.broadleafcommerce.core.catalog.service.CategorySiteMapGeneratorTest

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.