/* * * Copyright (C) 2007-2015 Licensed to the Comunes Association (CA) under * one or more contributor license agreements (see COPYRIGHT for details). * The CA licenses this file to you under the GNU Affero General Public * License version 3, (the "License"); you may not use this file except in * compliance with the License. This file is part of kune. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package cc.kune.core.server.finders; import static org.junit.Assert.*; import java.util.List; import org.junit.After; import org.junit.Before; import org.junit.Test; import cc.kune.core.server.PersistenceTest; import cc.kune.core.server.properties.KuneBasicProperties; import cc.kune.domain.License; import cc.kune.domain.finders.LicenseFinder; import com.google.inject.Inject; // TODO: Auto-generated Javadoc /** * The Class LicenseFinderTest. * * @author vjrj@ourproject.org (Vicente J. Ruiz Jurado) */ public class LicenseFinderTest extends PersistenceTest { /** The finder. */ @Inject LicenseFinder finder; /** The license1. */ private License license1; /** The license2. */ private License license2; /** The license def. */ private License licenseDef; /** The properties. */ @Inject KuneBasicProperties properties; /** * Adds the data. */ @Before public void addData() { openTransaction(); licenseDef = new License("by-sa-v3.0", "Creative Commons Attribution-ShareAlike", "", "http://creativecommons.org/licenses/by-sa/3.0/", true, true, false, "", ""); persist(licenseDef); license1 = new License("by-nc-nd-v3.0", "Creative Commons Attribution-NonCommercial-NoDerivs", "", "http://creativecommons.org/licenses/by-nc-nd/3.0/", true, false, false, "", ""); persist(license1); license2 = new License("gfdl-v1.3", "GNU Free Documentation License", "", "http://www.gnu.org/copyleft/fdl.html", false, true, false, "", ""); persist(license2); } /** * Close. */ @After public void close() { if (getTransaction().isActive()) { getTransaction().rollback(); } } /** * Find all. */ @Test public void findAll() { final List<License> all = finder.getAll(); assertEquals(3, all.size()); } /** * Find by id. */ @Test public void findById() { final License lic = finder.findByShortName(license1.getShortName()); assertNotNull(lic); assertEquals(license1.getShortName(), lic.getShortName()); assertEquals(license1.getLongName(), lic.getLongName()); } /** * Find cc. */ @Test public void findCC() { final List<License> cc = finder.getCC(); assertEquals(2, cc.size()); } /** * Find default license. */ @Test public void findDefaultLicense() { final String licenseDefId = properties.getDefaultLicense(); final License lic = finder.findByShortName(licenseDefId); assertNotNull(lic); assertEquals(licenseDef.getShortName(), lic.getShortName()); assertEquals(licenseDef.getLongName(), lic.getLongName()); } /** * Find not cc. */ @Test public void findNotCC() { final List<License> notCc = finder.getNotCC(); assertEquals(1, notCc.size()); } }