1
2
3
4
5
6
7
8
9
10
11
12
13
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
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
71 JAXBContext jc = JAXBContext.newInstance(Term.class);
72
73 Marshaller m = jc.createMarshaller();
74 m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
75
76 ByteArrayOutputStream baos = new ByteArrayOutputStream();
77
78
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 }