View Javadoc
1   /**
2    * Copyright 2014 The Kuali Foundation Licensed under the Educational
3    * Community License, Version 2.0 (the "License"); you may not use this file
4    * except in compliance with the License. You may obtain a copy of the License
5    * at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12   * License for the specific language governing permissions and limitations under
13   * the License.
14   */
15  package org.kuali.mobility.academics.entity;
16  
17  import org.junit.Test;
18  import org.junit.runner.RunWith;
19  import org.slf4j.LoggerFactory;
20  import org.springframework.test.context.ContextConfiguration;
21  import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
22  
23  import javax.xml.bind.JAXBContext;
24  import javax.xml.bind.JAXBException;
25  import javax.xml.bind.Marshaller;
26  import javax.xml.bind.Unmarshaller;
27  import java.io.ByteArrayOutputStream;
28  import java.io.InputStream;
29  import java.util.ArrayList;
30  import java.util.List;
31  
32  import static org.junit.Assert.assertFalse;
33  import static org.junit.Assert.assertTrue;
34  
35  /**
36   * @author Kuali Mobility Team (mobility.dev@kuali.org)
37   */
38  @RunWith(SpringJUnit4ClassRunner.class)
39  @ContextConfiguration(value = "classpath:TestSpringBeans.xml")
40  public class TermTest {
41      private static final org.slf4j.Logger LOG = LoggerFactory.getLogger(TermTest.class);
42  
43      @Test
44      public void testMarshallObjectTree() {
45          Term term = new Term();
46          term.setId("1234");
47          term.setShortDescription("Test Term");
48          term.setActive(true);
49          term.setDescription("Test Term Description");
50          List<Career> careers = new ArrayList<Career>();
51          for( int i=0; i<3; i++ ) {
52              Career career = new Career();
53              career.setId("Career"+i);
54              career.setDescription("Description for "+i);
55              career.setShortDescription("Career "+i);
56              List<Subject> subjects = new ArrayList<Subject>();
57              for( int j=0; j<3; j++ ) {
58                  Subject subject = new Subject();
59                  subject.setId("Subject"+j);
60                  subject.setShortDescription("Subject "+j);
61                  subject.setDescription("Description for "+j);
62                  subjects.add(subject);
63              }
64              career.setSubjects(subjects);
65              careers.add(career);
66          }
67          term.setCareers(careers);
68  
69          try {
70              // Write to file
71              JAXBContext jc = JAXBContext.newInstance(Term.class);
72              //Create marshaller
73              Marshaller m = jc.createMarshaller();
74              m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
75  
76              ByteArrayOutputStream baos = new ByteArrayOutputStream();
77  
78              //Marshal object into file.
79              m.marshal(term, baos);
80  
81              LOG.debug(baos.toString());
82          } catch (JAXBException jbe) {
83              LOG.error(jbe.getLocalizedMessage(), jbe);
84          }
85      }
86  
87      @Test
88      public void testUnMarshallObjectTree() {
89          Term term = null;
90          try {
91              JAXBContext jc = JAXBContext.newInstance(Term.class);
92              Unmarshaller um = jc.createUnmarshaller();
93              InputStream in = this.getClass().getResourceAsStream("/ScheduleOfClasses.xml");
94              term = (Term) um.unmarshal(in);
95  
96          } catch (JAXBException jbe) {
97              LOG.error(jbe.getLocalizedMessage(), jbe);
98          }
99  
100         assertFalse("Term object is null and should not be.", term == null);
101         assertTrue("Term had improper number of careers: "+term.getCareers().size(), term.getCareers() != null && term.getCareers().size() == 22);
102     }
103 }