blob: db3fe988a3b60a3edc58bf619d4dff64fe1b1ee8 [file] [log] [blame]
package npanday.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 org.apache.maven.it.Verifier;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
public class NPANDAY_452_SilverlightAppTest
extends AbstractNPandayIntegrationTestCase
{
public NPANDAY_452_SilverlightAppTest()
{
super( "[1.5.0-incubating,)" );
skipIfMissingMSBuildTask( "Microsoft/Silverlight/v3.0/Microsoft.Silverlight.CSharp.targets",
"Silverlight v3.0 SDK is not present" );
// required for ASP.NET packaging
skipIfMissingWebDeployV2();
}
public void test()
throws Exception
{
NPandayIntegrationTestContext context = createDefaultTestContext();
Verifier verifier = context.getPreparedVerifier();
verifier.executeGoal( "install" );
verifier.assertArtifactPresent(context.getGroupId(), "SilverlightClassLibrary1", "1.0-SNAPSHOT", "dll" );
verifier.assertArtifactPresent(context.getGroupId(), "SilverlightApplication1", "1.0-SNAPSHOT", "xap" );
verifier.assertArtifactPresent(context.getGroupId(), "SilverlightApplication1", "1.0-SNAPSHOT", "dll" );
verifier.assertArtifactPresent(context.getGroupId(), "SilverlightApplication2", "1.0-SNAPSHOT", "xap" );
verifier.assertArtifactPresent(context.getGroupId(), "SilverlightApplication2", "1.0-SNAPSHOT", "dll" );
verifier.assertArtifactPresent(context.getGroupId(), "SilverlightApplication1.Web", "1.0-SNAPSHOT", "msdeploy.zip" );
// make sure the XAP files get copied by aspnet plugin
File zipFile = new File( verifier.getArtifactPath( context.getGroupId(), "SilverlightApplication1.Web",
"1.0-SNAPSHOT", "msdeploy.zip" ) );
List<String> entries = new ArrayList<String>();
String basedir = new File( verifier.getBasedir(), "SilverlightApplication1.Web" ).getAbsolutePath();
entries.add( translateMsDeployPath( basedir, "SilverlightApplication1.Web/ClientBin/SilverlightApplication1.xap" ) );
entries.add( translateMsDeployPath( basedir, "SilverlightApplication1.Web/ClientBin/SilverlightApplication2.xap" ) );
assertZipEntries( zipFile, entries );
// make sure no bin entries as well
entries = new ArrayList<String>();
entries.add( translateMsDeployPath( basedir, "SilverlightApplication1.Web/bin/SilverlightApplication1.xap" ) );
entries.add( translateMsDeployPath( basedir, "SilverlightApplication1.Web/bin/SilverlightApplication2.xap" ) );
assertNoZipEntries( zipFile, entries );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
}
}