Package org.apache.its

Source Code of org.apache.its.IT_003_SharedResourceInclusion

package org.apache.its;

/*
* 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.
*/

import static org.apache.its.util.TestUtils.archivePathFromChild;
import static org.apache.its.util.TestUtils.archivePathFromProject;
import static org.apache.its.util.TestUtils.assertZipContents;
import static org.apache.its.util.TestUtils.getTestDir;

import org.apache.maven.it.VerificationException;
import org.apache.maven.it.Verifier;
import org.junit.Test;

import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.HashSet;
import java.util.Set;

public class IT_003_SharedResourceInclusion
{
   
    private static final String BASENAME = "shared-resources";
    private static final String VERSION = "1";
   
    @Test
    public void execute()
        throws VerificationException, IOException, URISyntaxException
    {
        File testDir = getTestDir( BASENAME );
       
        Verifier verifier = new Verifier( testDir.getAbsolutePath() );
       
        verifier.executeGoal( "package" );
       
        verifier.verifyErrorFreeLog();
        verifier.resetStreams();
       
        File assembly = new File( testDir, "target/" + BASENAME + "-" + VERSION + "-source-release.zip" );
       
        Set<String> required = new HashSet<String>();
       
        required.add( archivePathFromProject( BASENAME, VERSION, "/pom.xml" ) );
        required.add( archivePathFromProject( BASENAME, VERSION, "/LICENSE" ) );
        required.add( archivePathFromProject( BASENAME, VERSION, "/DEPENDENCIES" ) );
        required.add( archivePathFromProject( BASENAME, VERSION, "/NOTICE" ) );
       
        Set<String> banned = new HashSet<String>();
       
        banned.add( archivePathFromChild( BASENAME, VERSION, "child1", "/LICENSE" ) );
        banned.add( archivePathFromChild( BASENAME, VERSION, "child1", "/DEPENDENCIES" ) );
        banned.add( archivePathFromChild( BASENAME, VERSION, "child1", "/NOTICE" ) );
       
        banned.add( archivePathFromChild( BASENAME, VERSION, "child2", "/LICENSE" ) );
        banned.add( archivePathFromChild( BASENAME, VERSION, "child2", "/DEPENDENCIES" ) );
        banned.add( archivePathFromChild( BASENAME, VERSION, "child2", "/NOTICE" ) );
       
        assertZipContents( required, banned, assembly );
    }

}
TOP

Related Classes of org.apache.its.IT_003_SharedResourceInclusion

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.