/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.config.yangjmxgenerator; import static junit.framework.Assert.assertNotNull; import static junit.framework.Assert.format; import java.io.InputStream; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import org.junit.Before; import org.opendaylight.controller.config.yangjmxgenerator.plugin.util.YangModelSearchUtils; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.model.api.IdentitySchemaNode; import org.opendaylight.yangtools.yang.model.api.Module; import org.opendaylight.yangtools.yang.model.api.SchemaContext; import org.opendaylight.yangtools.yang.parser.impl.YangParserImpl; import com.google.common.base.Preconditions; public abstract class AbstractYangTest { protected SchemaContext context; protected Map namesToModules; // are module names globally // unique? protected Module configModule, rpcContextModule, threadsModule, threadsJavaModule, bgpListenerJavaModule, ietfInetTypesModule, jmxModule, jmxImplModule, testFilesModule, testFiles1Module; @Before public void loadYangFiles() throws Exception { List yangISs = new ArrayList<>(); yangISs.addAll(getStreams("/test-config-threads.yang", "/test-config-threads-java.yang", "/config-bgp-listener-impl.yang", "/ietf-inet-types.yang", "/config-jmx-it.yang", "/config-jmx-it-impl.yang", "/test-config-files.yang", "/test-config-files1.yang")); yangISs.addAll(getConfigApiYangInputStreams()); YangParserImpl parser = new YangParserImpl(); Set modulesToBuild = parser.parseYangModelsFromStreams(yangISs); // close ISs for (InputStream is : yangISs) { is.close(); } context = parser.resolveSchemaContext(modulesToBuild); namesToModules = YangModelSearchUtils.mapModulesByNames(context .getModules()); configModule = namesToModules.get(ConfigConstants.CONFIG_MODULE); rpcContextModule = namesToModules.get(ConfigConstants.CONFIG_MODULE); threadsModule = namesToModules .get(ConfigConstants.CONFIG_THREADS_MODULE); threadsJavaModule = namesToModules.get("config-threads-java"); bgpListenerJavaModule = namesToModules.get("config-bgp-listener-impl"); ietfInetTypesModule = namesToModules .get(ConfigConstants.IETF_INET_TYPES); jmxModule = namesToModules.get("config-jmx-it"); jmxImplModule = namesToModules.get("config-jmx-it-impl"); testFilesModule = namesToModules.get("test-config-files"); testFiles1Module = namesToModules.get("test-config-files1"); } public static List getConfigApiYangInputStreams() { return getStreams("/META-INF/yang/config.yang", "/META-INF/yang/rpc-context.yang"); } public Map mapIdentitiesByQNames(Module module) { Map result = new HashMap<>(); for (IdentitySchemaNode identitySchemaNode : module.getIdentities()) { QName qName = identitySchemaNode.getQName(); Preconditions.checkArgument( result.containsKey(qName) == false, format("Two identities of %s contain same " + "qname %s", module, qName)); result.put(qName, identitySchemaNode); } return result; } protected static List getStreams(String... paths) { List result = new ArrayList<>(); for (String path : paths) { InputStream is = AbstractYangTest.class.getResourceAsStream(path); assertNotNull(path + " is null", is); result.add(is); } return result; } }