Package org.candlepin.policy.js.compliance

Source Code of org.candlepin.policy.js.compliance.StatusReasonMessageGeneratorTest

/**
* Copyright (c) 2009 - 2012 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public License,
* version 2 (GPLv2). There is NO WARRANTY for this software, express or
* implied, including the implied warranties of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
* along with this software; if not, see
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
*
* Red Hat trademarks are not licensed under GPLv2. No permission is
* granted to use or replicate Red Hat trademarks that are incorporated
* in this software or its documentation.
*/
package org.candlepin.policy.js.compliance;

import static org.junit.Assert.*;

import org.candlepin.model.Consumer;
import org.candlepin.model.ConsumerInstalledProduct;
import org.candlepin.model.ConsumerType;
import org.candlepin.model.Entitlement;
import org.candlepin.model.Owner;
import org.candlepin.model.Pool;
import org.candlepin.model.ProductPoolAttribute;
import org.candlepin.test.TestUtil;

import org.junit.Before;
import org.junit.Test;
import org.xnap.commons.i18n.I18n;
import org.xnap.commons.i18n.I18nFactory;

import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.Random;

/**
* StatusReasonMessageGeneratorTest
*/
public class StatusReasonMessageGeneratorTest {

    private StatusReasonMessageGenerator generator;
    private Consumer consumer;
    private Owner owner;
    private Entitlement ent1;
    private Entitlement entStacked1, entStacked2;

    @Before
    public void setUp() {
        Locale locale = new Locale("en_US");
        I18n i18n = I18nFactory.getI18n(getClass(), "org.candlepin.i18n.Messages", locale,
            I18nFactory.FALLBACK);
        generator = new StatusReasonMessageGenerator(i18n);
        owner = new Owner("test");
        consumer = new Consumer();
        consumer.setType(new ConsumerType(ConsumerType.ConsumerTypeEnum.SYSTEM));
        ent1 = mockEntitlement(consumer, "id1", "Nonstacked Product");
        ent1.setId("ent1");
        entStacked1 = mockBaseStackedEntitlement(consumer, "stack",
            "Stacked Product", "Stack Subscription One");
        entStacked2 = mockBaseStackedEntitlement(consumer, "stack",
            "Stacked Product", "Stack Subscription Two");
        consumer.addEntitlement(ent1);
        consumer.addEntitlement(entStacked1);
        consumer.addEntitlement(entStacked2);
    }

    @Test
    public void testSocketsMessage() {
        ComplianceReason reason = buildReason("SOCKETS", buildGeneralAttributes("8", "4"));
        generator.setMessage(consumer, reason, new Date());
        assertEquals(
            "Only supports 4 of 8 sockets.",
            reason.getMessage());
    }

    @Test
    public void testStackedSubs() {
        ComplianceReason reason = buildReason("SOCKETS", buildStackedAttributes("8", "4"));
        generator.setMessage(consumer, reason, new Date());
        String message = reason.getMessage();
        assertEquals("Only supports 4 of 8 sockets.", message);
        String[] names = reason.getAttributes().get("name").split("/");
        Arrays.sort(names);
        assertEquals("Stack Subscription One", names[0]);
        assertEquals("Stack Subscription Two", names[1]);
    }

    @Test
    public void testArchMessage() {
        ComplianceReason reason = buildReason("ARCH",
            buildGeneralAttributes("x86_64", "ppc64"));
        generator.setMessage(consumer, reason, new Date());
        assertEquals(
            "Supports architecture ppc64 but" +
            " the system is x86_64.", reason.getMessage());
    }

    @Test
    public void testRamMessage() {
        ComplianceReason reason = buildReason("RAM", buildGeneralAttributes("8", "4"));
        generator.setMessage(consumer, reason, new Date());
        assertEquals(
            "Only supports 4GB of 8GB of RAM.",
            reason.getMessage());
    }

    @Test
    public void testVirtLimitMessage() {
        ComplianceReason reason = buildReason("GUEST_LIMIT",
            buildGeneralAttributes("8", "4"));
        generator.setMessage(consumer, reason, new Date());
        assertEquals(
            "Only supports 4 of 8 virtual guests.",
            reason.getMessage());
    }

    @Test
    public void testCoresMessage() {
        ComplianceReason reason = buildReason("CORES", buildGeneralAttributes("8", "4"));
        generator.setMessage(consumer, reason, new Date());
        assertEquals(
            "Only supports 4 of 8 cores.",
            reason.getMessage());
    }

    @Test
    public void testVcpuMessage() {
        ComplianceReason reason = buildReason("VCPU", buildGeneralAttributes("8", "4"));
        generator.setMessage(consumer, reason, new Date());
        assertEquals(
            "Only supports 4 of 8 vCPUs.",
            reason.getMessage());
    }

    @Test
    public void testDefaultMessage() {
        ComplianceReason reason = buildReason("NOT_A_KEY",
            buildGeneralAttributes("8", "4"));
        generator.setMessage(consumer, reason, new Date());
        assertEquals(
            "NOT_A_KEY COVERAGE PROBLEM.  " +
            "Supports 4 of 8", reason.getMessage());
    }

    @Test
    public void testNonInstalled() {
        HashMap<String, String> attrs = new HashMap<String, String>();
        attrs.put("product_id", "prod1");
        ComplianceReason reason = buildReason("NOTCOVERED", attrs);
        ConsumerInstalledProduct installed = new ConsumerInstalledProduct();
        installed.setProductId("prod1");
        installed.setProductName("NonCovered Product");
        consumer.addInstalledProduct(installed);
        generator.setMessage(consumer, reason, new Date());
        assertEquals("Not supported by a valid subscription.", reason.getMessage());
    }

    private ComplianceReason buildReason(String key, Map<String, String> attributes) {
        ComplianceReason reason = new ComplianceReason();
        reason.setKey(key);
        reason.setMessage("");
        reason.setAttributes(attributes);
        return reason;
    }

    private Map<String, String> buildGeneralAttributes(String has, String covered) {
        HashMap<String, String> result = new HashMap<String, String>();
        result.put("entitlement_id", "ent1");
        result.put("has", has);
        result.put("covered", covered);
        return result;
    }

    private Map<String, String> buildStackedAttributes(String has, String covered) {
        HashMap<String, String> result = new HashMap<String, String>();
        result.put("stack_id", "stack");
        result.put("has", has);
        result.put("covered", covered);
        return result;
    }

    private Entitlement mockBaseStackedEntitlement(Consumer consumer, String stackId,
        String productId, String name) {
        Entitlement e = mockEntitlement(consumer, productId, name);
        Random gen = new Random();
        int id = gen.nextInt(Integer.MAX_VALUE);
        e.setId(String.valueOf(id));
        Pool p = e.getPool();
        // Setup the attributes for stacking:
        p.addProductAttribute(new ProductPoolAttribute("stacking_id", stackId, productId));
        return e;
    }

    private Entitlement mockEntitlement(Consumer consumer, String productId, String name) {
        Pool p = new Pool(owner, productId, name, null,
            new Long(1000), TestUtil.createDate(2000, 1, 1),
            TestUtil.createDate(2050, 1, 1), "1000", "1000", "1000");
        Entitlement e = new Entitlement(p, consumer, 1);
        return e;
    }
}
TOP

Related Classes of org.candlepin.policy.js.compliance.StatusReasonMessageGeneratorTest

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.