/* * Copyright (C) 2016 LibreCCM Foundation. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301 USA */ package org.librecms.contentsection; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.libreccm.tests.categories.UnitTest; import org.libreccm.testutils.DatasetType; import org.libreccm.testutils.DatasetsVerifier; import java.util.Arrays; import java.util.Collection; /** * * @author Jens Pelzetter */ @RunWith(Parameterized.class) @Category(UnitTest.class) public class DatasetsTest extends DatasetsVerifier { @Parameterized.Parameters(name = "Dataset {0}") public static Collection data() { return Arrays.asList(new String[]{ "/datasets/org/librecms/contentsection/AssetRepositoryTest/data.xml", "/datasets/org/librecms/contentsection/AssetRepositoryTest/after-delete.xml", "/datasets/org/librecms/contentsection/AssetManagerTest/data.xml", "/datasets/org/librecms/contentsection/AssetManagerTest/after-clean-orphaned.xml", "/datasets/org/librecms/contentsection/AssetManagerTest/after-copy-to-other-contentsection.xml", "/datasets/org/librecms/contentsection/AssetManagerTest/after-copy-to-other-folder.xml", "/datasets/org/librecms/contentsection/AssetManagerTest/after-copy-to-same-folder.xml", "/datasets/org/librecms/contentsection/AssetManagerTest/after-share.xml", "/datasets/org/librecms/contentsection/AssetManagerTest/after-move-to-other-contentsection.xml", "/datasets/org/librecms/contentsection/AssetManagerTest/after-move-to-other-folder.xml", "/datasets/org/librecms/contentsection/AttachmentListManagerTest/data.xml", "/datasets/org/librecms/contentsection/AttachmentListManagerTest/after-create-after-last.xml", "/datasets/org/librecms/contentsection/AttachmentListManagerTest/after-create-with-negative-position.xml", "/datasets/org/librecms/contentsection/AttachmentListManagerTest/after-create-with-position.xml", "/datasets/org/librecms/contentsection/AttachmentListManagerTest/after-create.xml", "/datasets/org/librecms/contentsection/AttachmentListManagerTest/after-move-down.xml", "/datasets/org/librecms/contentsection/AttachmentListManagerTest/after-move-up.xml", "/datasets/org/librecms/contentsection/AttachmentListManagerTest/after-remove.xml", "/datasets/org/librecms/contentsection/ContentSectionManagerTest/data.xml", "/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-add-contenttype.xml", "/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-remove-contenttype.xml", "/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-add-role.xml", "/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-create.xml", "/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-remove-role.xml", "/datasets/org/librecms/contentsection/ContentSectionManagerTest/after-rename.xml", "/datasets/org/librecms/contentsection/ContentItemRepositoryTest/data.xml", "/datasets/org/librecms/contentsection/ContentItemRepositoryTest/after-save.xml", "/datasets/org/librecms/contentsection/ContentItemL10NManagerTest/data.xml", "/datasets/org/librecms/contentsection/ContentItemL10NManagerTest/after-add-language.xml", "/datasets/org/librecms/contentsection/ContentItemL10NManagerTest/after-normalize.xml", "/datasets/org/librecms/contentsection/ContentItemL10NManagerTest/after-remove-language.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/data.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-create-contentitem.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-create-contentitem-with-workflow.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-move.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-move-to-other-section.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-copy-to-other-folder.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-copy-to-same-folder.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-copy-to-folder-in-other-section.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-publish.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-republish.xml", "/datasets/org/librecms/contentsection/ContentItemManagerTest/after-unpublish.xml", "/datasets/org/librecms/contentsection/ContentTypeRepositoryTest/data.xml", "/datasets/org/librecms/contentsection/ContentTypeRepositoryTest/after-delete.xml", "/datasets/org/librecms/contentsection/FolderManagerTest/data.xml", "/datasets/org/librecms/contentsection/FolderManagerTest/after-create-docs-folder.xml", "/datasets/org/librecms/contentsection/FolderManagerTest/after-create-assets-folder.xml", "/datasets/org/librecms/contentsection/FolderManagerTest/after-delete-folder.xml", "/datasets/org/librecms/contentsection/FolderManagerTest/after-move-folder.xml", "/datasets/org/librecms/contentsection/FolderManagerTest/after-move-folder-same-name.xml", "/datasets/org/librecms/contentsection/ItemAttachmentManagerTest/data.xml", "/datasets/org/librecms/contentsection/ItemAttachmentManagerTest/after-attach-shared.xml", "/datasets/org/librecms/contentsection/ItemAttachmentManagerTest/after-attach-nonshared.xml", "/datasets/org/librecms/contentsection/ItemAttachmentManagerTest/after-unattach-nonshared.xml", "/datasets/org/librecms/contentsection/ItemAttachmentManagerTest/after-unattach-nonshared.xml" }); } public DatasetsTest(final String datasetPath) { super(datasetPath); } @Override public DatasetType getDatasetType() { return DatasetType.FLAT_XML; } @Override public String[] getSchemas() { return new String[]{"ccm_core", "ccm_cms"}; } @Override public String[] getDdlFiles() { return new String[]{ // "/sql/ddl/auto/h2.sql" "/scripts/datasets-test/001_create_schema.sql", "/scripts/datasets-test/002_create_ccm_cms_tables.sql", "/scripts/datasets-test/003_init_hibernate_sequence.sql", }; } @BeforeClass public static void setUpClass() { } @AfterClass public static void tearDownClass() { } @Before public void setUp() { } @After public void tearDown() { } }