/* * Copyright 2012 Red Hat, Inc. and/or its affiliates. * * 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.kie.workbench.common.services.backend.kmodule; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import org.junit.Test; import org.kie.workbench.common.services.shared.kmodule.KModuleModel; import static org.junit.Assert.*; public class KModuleContentHandlerTest { @Test public void testBasic() throws Exception { KModuleContentHandler kModuleContentHandler = new KModuleContentHandler(); KModuleModel model = kModuleContentHandler.toModel(readResource("simpleKModule.xml")); assertNotNull(model); } @Test public void testMarshallingOfDefaultDroolsNameSpace() throws Exception { final KModuleContentHandler kModuleContentHandler = new KModuleContentHandler(); final String kmodule = kModuleContentHandler.toString( new KModuleModel() ); assertNotNull( kmodule ); assertTrue( kmodule.contains( "xmlns=\"http://www.drools.org/xsd/kmodule\"" ) ); } private String readResource(String name) { StringBuffer contents = new StringBuffer(); BufferedReader reader = null; try { reader = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream(name))); String text = null; while ((text = reader.readLine()) != null) { contents.append(text); } } catch (Exception e) { if (reader != null) { try { reader.close(); } catch (IOException e1) { e1.printStackTrace(); } } throw new IllegalStateException("Error while reading file.", e); } return contents.toString(); } }