blob: 52ace0243efff72db1f7b86fbc0f6735bad21f42 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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
*
* 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.
*/
package org.apache.maven.plugins.announcement;
import java.io.File;
import java.nio.file.Files;
import org.apache.maven.plugin.testing.AbstractMojoTestCase;
import org.codehaus.plexus.util.FileUtils;
/**
* @author Olivier Lamy
* @version $Id$
*/
public class AnnouncementMojoTest extends AbstractMojoTestCase {
public void testAnnounceGeneration() throws Exception {
File pom = new File(getBasedir(), "/src/test/unit/plugin-config.xml");
AnnouncementMojo mojo = (AnnouncementMojo) lookupMojo("announcement-generate", pom);
setVariableValueToObject(mojo, "xmlPath", new File(getBasedir(), "/src/test/unit/announce-changes.xml"));
File announcementDirectory = new File(getBasedir(), "target/test");
if (announcementDirectory.exists()) {
FileUtils.deleteDirectory(announcementDirectory);
announcementDirectory.mkdirs();
} else {
announcementDirectory.mkdirs();
}
setVariableValueToObject(mojo, "announcementDirectory", announcementDirectory);
setVariableValueToObject(mojo, "version", "1.1");
setVariableValueToObject(mojo, "template", "announcement.vm");
setVariableValueToObject(
mojo, "templateDirectory", "/src/main/resources/org/apache/maven/plugins/announcement/");
setVariableValueToObject(mojo, "basedir", getBasedir());
setVariableValueToObject(mojo, "introduction", "Nice library");
mojo.execute();
String result =
new String(Files.readAllBytes(announcementDirectory.toPath().resolve("announcement.vm")));
assertContains("Nice library", result);
assertContains("Changes in this version include:", result);
assertContains("New features:", result);
assertContains("o Added additional documentation on how to configure the plugin.", result);
assertContains("Fixed Bugs:", result);
assertContains("o Enable retrieving component-specific issues. Issue: MCHANGES-88.", result);
assertContains("Changes:", result);
assertContains("o Handle different issue systems.", result);
assertContains("o Updated dependencies.", result);
assertContains("Removed:", result);
assertContains("o The element type \" link \" must be terminated by the matching end-tag.", result);
assertContains("Deleted the erroneous code.", result);
}
private static void assertContains(String content, String announce) {
assertTrue(announce.indexOf(content) > 0);
}
}