view tests/reproducers/signed/EntryPointSignedSingleBothOk/testcases/EntryPointSignedSingleBothOkTest1.java @ 1243:19de1aaabc51

Enabled and properly tested Entry-Point attribute check
author Jiri Vanek <jvanek@redhat.com>
date Wed, 29 Jul 2015 16:29:43 +0200
parents
children
line wrap: on
line source

/*
 Copyright (C) 2015 Red Hat, Inc.

 This file is part of IcedTea.

 IcedTea is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License as published by
 the Free Software Foundation, version 2.

 IcedTea 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
 General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with IcedTea; see the file COPYING.  If not, write to
 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 02110-1301 USA.

 Linking this library statically or dynamically with other modules is
 making a combined work based on this library.  Thus, the terms and
 conditions of the GNU General Public License cover the whole
 combination.

 As a special exception, the copyright holders of this library give you
 permission to link this library with independent modules to produce an
 executable, regardless of the license terms of these independent
 modules, and to copy and distribute the resulting executable under
 terms of your choice, provided that you also meet, for each linked
 independent module, the terms and conditions of the license of that
 module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version.
 */

import java.io.IOException;
import java.util.Arrays;
import net.sourceforge.jnlp.OptionsDefinitions;
import net.sourceforge.jnlp.ProcessResult;
import net.sourceforge.jnlp.ServerAccess;
import net.sourceforge.jnlp.annotations.TestInBrowsers;
import net.sourceforge.jnlp.browsertesting.BrowserTest;
import static net.sourceforge.jnlp.browsertesting.BrowserTest.server;
import net.sourceforge.jnlp.browsertesting.Browsers;
import net.sourceforge.jnlp.closinglisteners.AutoErrorClosingListener;
import net.sourceforge.jnlp.closinglisteners.AutoOkClosingListener;
import net.sourceforge.jnlp.closinglisteners.StringBasedClosingListener;
import net.sourceforge.jnlp.config.DeploymentConfiguration;
import net.sourceforge.jnlp.runtime.ManifestAttributesChecker;
import net.sourceforge.jnlp.tools.DeploymentPropertiesModifier;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;


public class EntryPointSignedSingleBothOkTest1 extends BrowserTest {

    
    public static final String MAGICAL_OK1_CLOSING_STRING = "*** APPLET1 FINISHED ***";
    public static final String MAGICAL_OK2_CLOSING_STRING = "*** APPLET2 FINISHED ***";
    
private static class AutoOk1ClosingListener extends StringBasedClosingListener {

    public AutoOk1ClosingListener() {
        super(MAGICAL_OK1_CLOSING_STRING);
    }
  
}

private static class AutoOk2ClosingListener extends StringBasedClosingListener {

    public AutoOk2ClosingListener() {
        super(MAGICAL_OK2_CLOSING_STRING);
    }
  
}

    private static final DeploymentPropertiesModifier dpm = new DeploymentPropertiesModifier();
    private static final StringBasedClosingListener aok = new AutoOkClosingListener();
    
    private static final StringBasedClosingListener aok1 = new AutoOk1ClosingListener();
    private static final StringBasedClosingListener aok2 = new AutoOk2ClosingListener();
    
    private static final StringBasedClosingListener aer = new AutoErrorClosingListener();
    private static final String confirmation1 = "*** applet1 running ***";
    private static final String confirmation2 = "*** applet2 running ***";
    

    @BeforeClass
    public static void setDeploymentManifestPermissionReadingOnly() throws IOException {
        dpm.setProperties(DeploymentConfiguration.KEY_ENABLE_MANIFEST_ATTRIBUTES_CHECK, ManifestAttributesChecker.MANIFEST_ATTRIBUTES_CHECK.ENTRYPOINT.toString());
    }

    @AfterClass
    public static void restoreDeploymentProeprtiees() throws IOException {
        dpm.restoreProperties();
    }

    @Test
    public void javawsAllPermNoSecurity1() throws Exception {
        ProcessResult p = server.executeJavawsHeadless("EntryPointSignedSingleBothOk1.jnlp");
        Assert.assertTrue(p.stdout.contains(confirmation1));
        Assert.assertFalse(p.stdout.contains(aok1.getCondition()));
        Assert.assertTrue(p.stderr.contains(aer.getCondition()));
        assertNope(p);
    }

    @Test
    public void javawsAllPermAllSecurity1() throws Exception {
        ProcessResult p = server.executeJavawsHeadless("EntryPointSignedSingleBothOk_security1.jnlp");
        Assert.assertTrue(p.stdout.contains(confirmation1));
        Assert.assertTrue(p.stdout.contains(aok1.getCondition()));
        Assert.assertFalse(p.stderr.contains(aer.getCondition()));
        assertNope(p);
    }

    @Test
    public void javawsAppletAllPermNoSecurity1() throws Exception {
        ProcessResult p = server.executeJavaws(Arrays.asList(new String[]{"-headless", "-verbose"}), "EntryPointSignedSingleBothOk_applet1.jnlp", new AutoOkClosingListener(), new AutoErrorClosingListener());
        Assert.assertTrue(p.stdout.contains(confirmation1));
        Assert.assertFalse(p.stdout.contains(aok1.getCondition()));
        Assert.assertTrue(p.stderr.contains(aer.getCondition()));
        assertNope(p);
    }

    @Test
    public void javawsAppletAllPermAllSecurity1() throws Exception {
        ProcessResult p = server.executeJavawsHeadless("EntryPointSignedSingleBothOk_applet_security1.jnlp", new AutoOkClosingListener(), new AutoErrorClosingListener());
        Assert.assertTrue(p.stdout.contains(confirmation1));
        Assert.assertTrue(p.stdout.contains(aok1.getCondition()));
        Assert.assertFalse(p.stderr.contains(aer.getCondition()));
        assertNope(p);
    }

    @Test
    @TestInBrowsers(testIn = Browsers.one)
    public void appletAllPermAllSecurity1() throws Exception {
        server.getBrowserLocation();
        ProcessResult p = server.executeBrowser("EntryPointSignedSingleBothOk1.html", ServerAccess.AutoClose.CLOSE_ON_BOTH);
        Assert.assertTrue(p.stdout.contains(confirmation1));
        Assert.assertTrue(p.stdout.contains(aok1.getCondition()));
        Assert.assertFalse(p.stderr.contains(aer.getCondition()));
        assertNope(p);
    }

    @Test
    public void javawsHtml1() throws Exception {
        ProcessResult p = server.executeJavaws(Arrays.asList(new String[]{OptionsDefinitions.OPTIONS.HTML.option}), "EntryPointSignedSingleBothOk1.html", new AutoOkClosingListener(), new AutoErrorClosingListener());
        Assert.assertTrue(p.stdout.contains(confirmation1));
        Assert.assertTrue(p.stdout.contains(aok1.getCondition()));
        Assert.assertFalse(p.stderr.contains(aer.getCondition()));
        assertNope(p);
    }
    
    public void assertNope(ProcessResult p){
        Assert.assertFalse(p.stdout.contains(confirmation2));
        Assert.assertFalse(p.stdout.contains(aok2.getCondition()));
    }

}