be.peerassistedlearning.repository.ApplicationRepositoryTest.java Source code

Java tutorial

Introduction

Here is the source code for be.peerassistedlearning.repository.ApplicationRepositoryTest.java

Source

/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2016 Matthias Hannes Koen Demonie David Op de Beeck
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package be.peerassistedlearning.repository;

import be.peerassistedlearning.config.ApplicationConfig;
import be.peerassistedlearning.model.*;
import be.peerassistedlearning.util.Utils;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

import java.util.Collection;
import java.util.Date;

import static org.junit.Assert.*;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = ApplicationConfig.class)
public class ApplicationRepositoryTest implements RepositoryTest {

    private Application a1, a2;

    @Autowired
    private StudentRepository studentRepository;

    @Autowired
    private CourseRepository courseRepository;

    @Autowired
    private ApplicationRepository applicationRepository;

    @Before
    public void before() {
        Course c1 = new Course("MBI80x", ".NET Programmeren", ".NET", Curriculum.TI, 3);
        c1 = courseRepository.save(c1);

        assertNotNull(c1.getId());

        Student s1 = new Student("Koen", "paswoord", "koen1992@hotmail.com", Curriculum.TI, "koen", UserType.ADMIN);
        s1 = studentRepository.save(s1);

        assertNotNull(s1.getId());

        a1 = new Application(s1, c1, new byte[2]);
        a2 = new Application(s1, c1, new byte[2], ApplicationState.PENDING, new Date(), new Date());
    }

    @Test
    @Transactional(propagation = Propagation.REQUIRES_NEW)
    public void testAdd() {
        applicationRepository.save(a1);
        assertNotNull(a1.getId());
    }

    @Test
    @Transactional(propagation = Propagation.REQUIRES_NEW)
    public void testUpdate() {
        applicationRepository.save(a1);

        assertNotNull(a1.getId());

        a1.reject();

        applicationRepository.save(a1);

        Application a3 = applicationRepository.findOne(a1.getId());

        assertEquals(a1, a3);

    }

    @Test
    @Transactional(propagation = Propagation.REQUIRES_NEW)
    public void testRemove() {
        applicationRepository.save(a1);
        applicationRepository.delete(a1);
        assertNull(applicationRepository.findOne(a1.getId()));
    }

    @Test
    @Transactional(propagation = Propagation.REQUIRES_NEW)
    public void testGetById() {
        applicationRepository.save(a1);
        assertNotNull(a1.getId());
        assertNotNull(applicationRepository.findOne(a1.getId()));
    }

    @Test
    @Transactional(propagation = Propagation.REQUIRES_NEW)
    public void testGetAll() {
        applicationRepository.save(a1);
        applicationRepository.save(a2);

        assertNotNull(a1.getId());
        assertNotNull(a2.getId());

        Collection<Application> list = Utils.makeCollection(applicationRepository.findAll());

        assertNotNull(list);
        assertEquals(2, list.size());
    }
}