Merge "Serialization/Deserialization and a host of other fixes"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / md / cluster / datastore / model / CarsModel.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.md.cluster.datastore.model;
10
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
13 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
14 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
15 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
16 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
17 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.CollectionNodeBuilder;
18 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableContainerNodeBuilder;
19 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableMapNodeBuilder;
20
21 public class CarsModel {
22     public static final QName BASE_QNAME = QName.create("urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test:cars", "2014-03-13",
23         "cars");
24
25     public static final YangInstanceIdentifier BASE_PATH = YangInstanceIdentifier.of(BASE_QNAME);
26
27     public static final QName CARS_QNAME = QName.create(BASE_QNAME, "cars");
28     public static final QName CAR_QNAME = QName.create(CARS_QNAME, "car");
29     public static final QName CAR_NAME_QNAME = QName.create(CAR_QNAME, "name");
30     public static final QName CAR_PRICE_QNAME = QName.create(CAR_QNAME, "price");
31
32
33     public static NormalizedNode create(){
34
35         // Create a list builder
36         CollectionNodeBuilder<MapEntryNode, MapNode> cars =
37             ImmutableMapNodeBuilder.create().withNodeIdentifier(
38                 new YangInstanceIdentifier.NodeIdentifier(
39                     CAR_QNAME));
40
41         // Create an entry for the car altima
42         MapEntryNode altima =
43             ImmutableNodes.mapEntryBuilder(CAR_QNAME, CAR_NAME_QNAME, "altima")
44                 .withChild(ImmutableNodes.leafNode(CAR_NAME_QNAME, "altima"))
45                 .withChild(ImmutableNodes.leafNode(CAR_PRICE_QNAME, 1000))
46                 .build();
47
48         // Create an entry for the car accord
49         MapEntryNode honda =
50             ImmutableNodes.mapEntryBuilder(CAR_QNAME, CAR_NAME_QNAME, "accord")
51                 .withChild(ImmutableNodes.leafNode(CAR_NAME_QNAME, "accord"))
52                 .withChild(ImmutableNodes.leafNode(CAR_PRICE_QNAME, 2000))
53                 .build();
54
55         cars.withChild(altima);
56         cars.withChild(honda);
57
58         return ImmutableContainerNodeBuilder.create()
59             .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(BASE_QNAME))
60             .withChild(cars.build())
61             .build();
62
63     }
64
65     public static NormalizedNode emptyContainer(){
66         return ImmutableContainerNodeBuilder.create()
67             .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(BASE_QNAME))
68             .build();
69     }
70
71 }