/* * Copyright (c) 2016 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.yangtools.yang.stmt; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import org.junit.Test; import org.opendaylight.yangtools.yang.model.api.CaseSchemaNode; import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode; import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode; public class ChoiceStmtTest extends AbstractModelTest { @Test public void choiceAndCaseTest() { final ContainerSchemaNode container = (ContainerSchemaNode) FOO.getDataChildByName(fooQName("transfer")); final ChoiceSchemaNode choice = (ChoiceSchemaNode) container.getDataChildByName(fooQName("how")); assertEquals(5, choice.getCases().size()); CaseSchemaNode caseNode = choice.findCaseNodes("input").iterator().next(); assertNotNull(caseNode); caseNode = choice.findCaseNodes("output").iterator().next(); assertNotNull(caseNode); caseNode = choice.findCaseNodes("interval").iterator().next(); assertNotNull(caseNode); caseNode = choice.findCaseNodes("daily").iterator().next(); assertNotNull(caseNode); caseNode = choice.findCaseNodes("manual").iterator().next(); assertNotNull(caseNode); assertEquals("interval", choice.getDefaultCase().get().getQName().getLocalName()); } }