/** * Licensed to Apereo under one or more contributor license * agreements. See the NOTICE file distributed with this work * for additional information regarding copyright ownership. * Apereo licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a * copy of the License at the following location: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.jasig.portlet.courses.dao.xml; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import java.io.Serializable; import java.util.List; import javax.portlet.PortletRequest; import org.jasig.portlet.courses.model.xml.Term; import org.jasig.portlet.courses.model.xml.TermList; import org.jasig.portlet.courses.model.xml.personal.Course; import org.jasig.portlet.courses.model.xml.personal.CoursesByTerm; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = "/mockTestContext.xml") public class MockCoursesDaoTest { @Autowired MockCoursesDaoImpl dao; @Mock PortletRequest request; @Before public void setup() throws Exception { MockitoAnnotations.initMocks(this); } @Test public void testMockDao() { final Serializable termListKey = dao.getTermListKey(request); final TermList termList = dao.getTermList(termListKey); final List<Term> terms = termList.getTerms(); assertNotNull(terms); assertEquals(1, terms.size()); Term term = terms.get(0); assertTrue(term.isCurrent()); assertEquals("1142", term.getCode()); assertEquals("Fall 2013-2014", term.getDisplayName()); assertNull(term.getTermType()); assertNull(term.getYear()); final String coursesByTermKey = dao.getCoursesByTermKey(request, term.getCode(), termList); CoursesByTerm coursesByTerm = dao.getCoursesByTerm(coursesByTermKey); assertNotNull(coursesByTerm); term = terms.get(0); assertTrue(term.isCurrent()); assertEquals(term, termList.getCurrentTerm()); assertEquals("1142", term.getCode()); assertEquals("Fall 2013-2014", term.getDisplayName()); assertNull(term.getTermType()); assertNull(term.getYear()); final String coursesByTermKey2 = dao.getCoursesByTermKey(request, terms.get(0).getCode(), termList); coursesByTerm = dao.getCoursesByTerm(coursesByTermKey2); assertNotNull(coursesByTerm); assertEquals(40, coursesByTerm.getCredits(), 0.01); assertEquals(3.25, coursesByTerm.getGpa(), 0.01); assertEquals(0, coursesByTerm.getNewUpdateCount()); assertEquals("1142", coursesByTerm.getTermCode()); final List<Course> courses = coursesByTerm.getCourses(); assertEquals(6, courses.size()); Course course = courses.get(0); assertEquals("Statistical Experimental Design", course.getTitle()); assertEquals("A", course.getGrade()); assertEquals(0.01, course.getCredits(), 0.01); assertEquals(course, coursesByTerm.getCourse(course.getCode())); } }