Package org.candlepin.sync

Source Code of org.candlepin.sync.ConsumerExporterTest

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

import static org.junit.Assert.assertTrue;

import org.candlepin.common.config.MapConfiguration;
import org.candlepin.config.ConfigProperties;
import org.candlepin.model.Consumer;
import org.candlepin.model.ConsumerType;
import org.candlepin.test.TestUtil;

import com.fasterxml.jackson.databind.ObjectMapper;

import org.junit.Test;

import java.io.IOException;
import java.io.StringWriter;
import java.util.HashMap;

/**
* ConsumerExporterTest
*/
public class ConsumerExporterTest {
    @Test
    public void testConsumerExport() throws IOException {
        ObjectMapper mapper = SyncUtils.getObjectMapper(new MapConfiguration(
                new HashMap<String, String>() {

                    {
                        put(ConfigProperties.FAIL_ON_UNKNOWN_IMPORT_PROPERTIES,
                                "false");
                    }
                }));


        ConsumerExporter exporter = new ConsumerExporter();
        ConsumerType ctype = new ConsumerType("candlepin");
        ctype.setId("8888");
        ctype.setManifest(true);

        StringWriter writer = new StringWriter();

        Consumer consumer = new Consumer();
        consumer.setUuid("test-uuid");
        consumer.setName("testy consumer");
        consumer.setType(ctype);

        exporter.export(mapper, writer, consumer, "/subscriptions", "/candlepin");

        StringBuffer json = new StringBuffer();
        json.append("{\"uuid\":\"").append(consumer.getUuid()).append("\",");
        json.append("\"name\":\"").append(consumer.getName()).append("\",");
        json.append("\"type\":");
        json.append("{\"id\":\"").append(ctype.getId()).append("\",");
        json.append("\"label\":\"").append(ctype.getLabel()).append("\",");
        json.append("\"manifest\":").append(ctype.isManifest()).append("},");
        json.append("\"owner\":null,");
        json.append("\"urlWeb\":\"/subscriptions\",");
        json.append("\"urlApi\":\"/candlepin\"}");
        assertTrue(TestUtil.isJsonEqual(json.toString(), writer.toString()));

        // change sibling order to ensure that isJsonEqual can reconcile
        json = new StringBuffer();
        json.append("{\"uuid\":\"").append(consumer.getUuid()).append("\",");
        json.append("\"type\":");
        json.append("{\"id\":\"").append(ctype.getId()).append("\",");
        json.append("\"label\":\"").append(ctype.getLabel()).append("\",");
        json.append("\"manifest\":").append(ctype.isManifest()).append("},");
        json.append("\"owner\":null,");
        json.append("\"name\":\"").append(consumer.getName()).append("\",");
        json.append("\"urlApi\":\"/candlepin\",");
        json.append("\"urlWeb\":\"/subscriptions\"}");
        assertTrue(TestUtil.isJsonEqual(json.toString(), writer.toString()));
    }
}
TOP

Related Classes of org.candlepin.sync.ConsumerExporterTest

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.