View Javadoc
1   /**
2    * Copyright 2011-2014 The Kuali Foundation Licensed under the Educational Community
3    * License, Version 2.0 (the "License"); you may not use this file except in
4    * compliance with the License. You may obtain a copy of the License at
5    *
6    * http://www.osedu.org/licenses/ECL-2.0
7    *
8    * Unless required by applicable law or agreed to in writing, software
9    * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
10   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11   * License for the specific language governing permissions and limitations under
12   * the License.
13   */
14  package org.kuali.mobility.news.util;
15  
16  import org.junit.Before;
17  import org.junit.Test;
18  import org.kuali.mobility.news.entity.NewsArticleImpl;
19  
20  import static org.junit.Assert.assertTrue;
21  
22  /**
23   * @author Kuali Mobility Team (mobility.collab@kuali.org)
24   */
25  public class NewsArticleTransformTest {
26  
27      private NewsArticleTransform transform;
28  
29      @Before
30      public void setUpTest() {
31          setTransform(new NewsArticleTransform());
32      }
33  
34      @Test
35      public void testTransformWithBadObject() {
36          NewsArticleImpl article = getTransform().transform(new String("bob"));
37          assertTrue("Article was not null and should have been.",article==null);
38      }
39  
40      @Test
41      public void testTransform() {
42          NewsArticleImpl article = new NewsArticleImpl();
43          article.setTitle("Test Article");
44          article.setArticleId("ABCDEFG");
45          article.setDescription("Test Description");
46          article.setSourceId(Long.parseLong("50"));
47  
48          NewsArticleImpl article2 = getTransform().transform(article);
49          assertTrue("Article is null and should not be.", article2 != null);
50          assertTrue("Article does not match and should.", article.getArticleId()==article2.getArticleId() && article.getTitle()==article2.getTitle());
51      }
52  
53      public NewsArticleTransform getTransform() {
54          return transform;
55      }
56  
57      public void setTransform(NewsArticleTransform transform) {
58          this.transform = transform;
59      }
60  }