blob: 59a3e932e9b1a0d1ae00c2f962d0deaa228f58c7 [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
*
* 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.onosproject.yang.runtime.impl.serializerhelper;
import org.junit.Test;
import org.onosproject.yang.model.ResourceId;
import org.onosproject.yang.runtime.impl.TestYangSerializerContext;
import java.util.LinkedList;
import java.util.List;
import static org.junit.Assert.assertEquals;
import static org.onosproject.yang.runtime.SerializerHelper.addToResourceId;
import static org.onosproject.yang.runtime.SerializerHelper.initializeResourceId;
/**
* Tests the serializer helper methods.
*/
public class ResourceIdNegative2Test {
public static final String LNS = "yrt:list";
TestYangSerializerContext context = new TestYangSerializerContext();
private static final String E_TOO_MANY =
"Too many key parameters in l1. Expected 3; actual 4.";
/**
* Test adding list in resource id with more then expected key value
* negative scenario.
*/
@Test
public void negative3Test() {
ResourceId.Builder rIdBlr = initializeResourceId(context);
List<String> valueSet = new LinkedList<>();
valueSet.add("1");
valueSet.add("2");
valueSet.add("3");
valueSet.add("4");
boolean isExpOccurred = false;
try {
addToResourceId(rIdBlr, "l1", LNS, valueSet);
} catch (IllegalArgumentException e) {
isExpOccurred = true;
assertEquals(E_TOO_MANY, e.getMessage());
}
assertEquals(true, isExpOccurred);
}
}