All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tests.modjy.java.com.xhaus.modjy.ModjyTestInterpreterLifecycle Maven / Gradle / Ivy

There is a newer version: 2.7.1.1
Show newest version
/*###
#
# Copyright Alan Kennedy.
#
# You may contact the copyright holder at this uri:
#
# http://www.xhaus.com/contact/modjy
#
# The licence under which this code is released is the Apache License v2.0.
#
# The terms and conditions of this license are listed in a file contained
# in the distribution that also contained this file, under the name
# LICENSE.txt.
#
# You may also read a copy of the license at the following web address.
#
# http://modjy.xhaus.com/LICENSE.txt
#
###*/

package com.xhaus.modjy;

import javax.servlet.http.HttpServlet;

public class ModjyTestInterpreterLifecycle extends ModjyTestBase {

    protected void lifecycleTestSetUp() throws Exception {
        baseSetUp();
        setAppFile("lifecycle_tests.py");
    }

    public void testAtExitHandlersCalled() throws Exception {
        System.setProperty("modjy", "here");
        lifecycleTestSetUp();
        createServlet();
        doGet();
        HttpServlet modjyServlet = getServlet();
        modjyServlet.destroy();
        assertEquals("gone", System.getProperty("modjy"));
    }

    public void testSitePackagesLoaded() throws Exception {
        for (int loadSitePackages = -1 ; loadSitePackages < 2 ; loadSitePackages++) {
            lifecycleTestSetUp();
            setAppName("load_site_packages_test");
            String parameter, expectedResult;
            if (loadSitePackages != -1) {
                parameter = Integer.toString(loadSitePackages);
                setInitParameter("load_site_packages", parameter);
                expectedResult = parameter;
            } else {
        	    // Do not set the parameter, so we get default behaviour
        	    expectedResult = "1";
        	}
            createServlet();
            doGet();
            String result = getOutput();
            assertEquals(expectedResult, result);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy