1   /*
2    * Copyright 2010 The Apache Software Foundation
3    *
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *     http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing, software
15   * distributed under the License is distributed on an "AS IS" BASIS,
16   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   * See the License for the specific language governing permissions and
18   * limitations under the License.
19   */
20  
21  package org.apache.hadoop.hbase.rest.model;
22  
23  import java.io.StringReader;
24  import java.io.StringWriter;
25  
26  import javax.xml.bind.JAXBContext;
27  import javax.xml.bind.JAXBException;
28  
29  import junit.framework.TestCase;
30  
31  public class TestStorageClusterVersionModel extends TestCase {
32    private static final String VERSION = "0.0.1-testing";
33  
34    private static final String AS_XML =
35      "<ClusterVersion>" + VERSION + "</ClusterVersion>";
36  
37    private JAXBContext context;
38  
39    public TestStorageClusterVersionModel() throws JAXBException {
40      super();
41      context = JAXBContext.newInstance(StorageClusterVersionModel.class);
42    }
43  
44    private StorageClusterVersionModel buildTestModel() {
45      StorageClusterVersionModel model = new StorageClusterVersionModel();
46      model.setVersion(VERSION);
47      return model;
48    }
49  
50    @SuppressWarnings("unused")
51    private String toXML(StorageClusterVersionModel model) throws JAXBException {
52      StringWriter writer = new StringWriter();
53      context.createMarshaller().marshal(model, writer);
54      return writer.toString();
55    }
56  
57    private StorageClusterVersionModel fromXML(String xml) throws JAXBException {
58      return (StorageClusterVersionModel)
59        context.createUnmarshaller().unmarshal(new StringReader(xml));
60    }
61  
62    private void checkModel(StorageClusterVersionModel model) {
63      assertEquals(model.getVersion(), VERSION);
64    }
65  
66    public void testBuildModel() throws Exception {
67      checkModel(buildTestModel());
68    }
69  
70    public void testFromXML() throws Exception {
71      checkModel(fromXML(AS_XML));
72    }
73  }