/*
* This code was written by Bear Giles <bgiles@coyotesong.com> and he
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Any contributions made by others are licensed to this project under
* one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.
*
* 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.
*
* Copyright (c) 2013 Bear Giles <bgiles@coyotesong.com>
*/
package com.invariantproperties.project.student.persistence.config;
import static com.invariantproperties.project.student.matcher.InstructorEquality.equalTo;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.util.List;
import javax.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.transaction.TransactionConfiguration;
import org.springframework.transaction.annotation.Transactional;
import com.invariantproperties.project.student.business.InstructorFinderService;
import com.invariantproperties.project.student.business.InstructorManagerService;
import com.invariantproperties.project.student.business.ObjectNotFoundException;
import com.invariantproperties.project.student.business.TestRunService;
import com.invariantproperties.project.student.config.BusinessApplicationContext;
import com.invariantproperties.project.student.config.TestBusinessApplicationContext;
import com.invariantproperties.project.student.config.TestPersistenceJpaConfig;
import com.invariantproperties.project.student.domain.Instructor;
import com.invariantproperties.project.student.domain.TestRun;
/**
* @author Bear Giles <bgiles@coyotesong.com>
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = { BusinessApplicationContext.class, TestBusinessApplicationContext.class,
TestPersistenceJpaConfig.class })
@Transactional
@TransactionConfiguration(defaultRollback = true)
public class InstructorServiceIntegrationTest {
@Resource
private InstructorFinderService fdao;
@Resource
private InstructorManagerService mdao;
@Resource
TestRunService testService;
@Test
public void testInstructorLifecycle() throws Exception {
final TestRun testRun = testService.createTestRun();
final String name = "Alice : " + testRun.getUuid();
final String email = "alice-" + testRun.getUuid() + "@example.com";
final Instructor expected = new Instructor();
expected.setName(name);
expected.setEmailAddress(email);
assertNull(expected.getId());
// create instructor
Instructor actual = mdao.createInstructorForTesting(name, email, testRun);
expected.setId(actual.getId());
expected.setUuid(actual.getUuid());
expected.setCreationDate(actual.getCreationDate());
assertThat(expected, equalTo(actual));
assertNotNull(actual.getUuid());
assertNotNull(actual.getCreationDate());
// get instructor by id
actual = fdao.findInstructorById(expected.getId());
assertThat(expected, equalTo(actual));
// get instructor by uuid
actual = fdao.findInstructorByUuid(expected.getUuid());
assertThat(expected, equalTo(actual));
// get all instructors
final List<Instructor> instructors = fdao.findInstructorsByTestRun(testRun);
assertTrue(instructors.contains(actual));
// count instructors
final long count = fdao.countByTestRun(testRun);
assertTrue(count > 0);
// update instructor
expected.setName("Bob : " + testRun.getUuid());
expected.setEmailAddress("bob-" + testRun.getUuid() + "@example.com");
actual = mdao.updateInstructor(actual, expected.getName(), expected.getEmailAddress());
assertThat(expected, equalTo(actual));
// verify testRun.getObjects
// final List<TestablePersistentObject> objects = testRun.getObjects();
// assertTrue(objects.contains(actual));
// delete Instructor
mdao.deleteInstructor(expected.getUuid(), 0);
try {
fdao.findInstructorByUuid(expected.getUuid());
fail("exception expected");
} catch (ObjectNotFoundException e) {
// expected
}
testService.deleteTestRun(testRun.getUuid());
}
/**
* @test findInstructorById() with unknown instructor.
*/
@Test(expected = ObjectNotFoundException.class)
public void testfindInstructorByIdWhenInstructorIsNotKnown() {
final Integer id = 1;
fdao.findInstructorById(id);
}
/**
* @test findInstructorByUuid() with unknown Instructor.
*/
@Test(expected = ObjectNotFoundException.class)
public void testfindInstructorByUuidWhenInstructorIsNotKnown() {
final String uuid = "missing";
fdao.findInstructorByUuid(uuid);
}
/**
* Test updateInstructor() with unknown instructor.
*
* @throws ObjectNotFoundException
*/
@Test(expected = ObjectNotFoundException.class)
public void testUpdateInstructorWhenInstructorIsNotFound() {
final Instructor instructor = new Instructor();
instructor.setUuid("missing");
mdao.updateInstructor(instructor, "Alice", "alice@example.com");
}
/**
* Test deleteInstructor() with unknown instructor.
*
* @throws ObjectNotFoundException
*/
@Test(expected = ObjectNotFoundException.class)
public void testDeleteInstructorWhenInstructorIsNotFound() {
mdao.deleteInstructor("missing", 0);
}
}