blob: 599ea8fa63467446fe3282acde2b570260ced23c [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2021 CEA LIST and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Pauline DEVILLE (CEA LIST) pauline.deville@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.model2doc.emf.template2structure.tests;
import java.util.Collection;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.papyrus.junit.utils.rules.AbstractModelFixture;
import org.eclipse.papyrus.junit.utils.rules.ModelSetFixture;
import org.eclipse.papyrus.junit.utils.rules.PluginResource;
import org.eclipse.papyrus.model2doc.emf.documentstructuretemplate.TextDocumentTemplate;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
/**
* The goal of this class is to test TableOfContentsMapper
*/
@SuppressWarnings("nls")
@PluginResource("resources/TableOfContents/TableOfContents.pdst")
public class TableOfContentsMapperTest extends AbstractTemplateToStructureTests {
public static final String EXPECTED_RESOURCE_PATH = PLUGIN_EXPECTED_RESOURCE_PATH + "TableOfContents/expectedOutput/";
@Rule
public AbstractModelFixture<TransactionalEditingDomain> fixture = new ModelSetFixture();
/**
* @see org.eclipse.papyrus.model2doc.emf.template2structure.tests.AbstractTemplateToStructureTests#getFixture()
*
* @return
*/
@Override
public AbstractModelFixture<TransactionalEditingDomain> getFixture() {
return fixture;
}
/**
* Test the default TableOfContents
*/
@Test
public void defaultTableOfContentsMapperTest() {
TextDocumentTemplate textDocumentTemplate = getTextDocumentTemplate("default");
Collection<?> commandResult = generateDocumentStructure(textDocumentTemplate);
// Test the generated file is the same as the expected one
EObject expectedTextDocument = loadExpectedDocumentStructureResource(EXPECTED_RESOURCE_PATH + "default.pds");
Assert.assertTrue("The generated DocumentStructure does not match with the expected one, the generated file is: "
+ debugDisplay("output/default.pds"),
EcoreUtil.equals(expectedTextDocument, (EObject) commandResult.iterator().next()));
}
}