Tests: improving get_application_type() and fixing its name.
This patch also enables multiversion tests running for Java.
This commit is contained in:
@@ -9,6 +9,8 @@ from unit.applications.proto import TestApplicationProto
|
||||
|
||||
|
||||
class TestApplicationJava(TestApplicationProto):
|
||||
application_type = "java"
|
||||
|
||||
def prepare_env(self, script):
|
||||
app_path = option.temp_dir + '/java'
|
||||
web_inf_path = app_path + '/WEB-INF/'
|
||||
@@ -84,7 +86,7 @@ class TestApplicationJava(TestApplicationProto):
|
||||
"applications": {
|
||||
script: {
|
||||
"unit_jars": option.current_dir + '/build',
|
||||
"type": 'java',
|
||||
"type": self.get_application_type(),
|
||||
"processes": {"spare": 0},
|
||||
"working_directory": option.test_dir
|
||||
+ '/java/'
|
||||
|
||||
@@ -7,17 +7,13 @@ class TestApplicationPerl(TestApplicationProto):
|
||||
|
||||
def load(self, script, name='psgi.pl', **kwargs):
|
||||
script_path = option.test_dir + '/perl/' + script
|
||||
appication_type = self.get_appication_type()
|
||||
|
||||
if appication_type is None:
|
||||
appication_type = self.application_type
|
||||
|
||||
self._load_conf(
|
||||
{
|
||||
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
||||
"applications": {
|
||||
script: {
|
||||
"type": appication_type,
|
||||
"type": self.get_application_type(),
|
||||
"processes": {"spare": 0},
|
||||
"working_directory": script_path,
|
||||
"script": script_path + '/' + name,
|
||||
|
||||
@@ -7,17 +7,13 @@ class TestApplicationPHP(TestApplicationProto):
|
||||
|
||||
def load(self, script, index='index.php', **kwargs):
|
||||
script_path = option.test_dir + '/php/' + script
|
||||
appication_type = self.get_appication_type()
|
||||
|
||||
if appication_type is None:
|
||||
appication_type = self.application_type
|
||||
|
||||
self._load_conf(
|
||||
{
|
||||
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
||||
"applications": {
|
||||
script: {
|
||||
"type": appication_type,
|
||||
"type": self.get_application_type(),
|
||||
"processes": {"spare": 0},
|
||||
"root": script_path,
|
||||
"working_directory": script_path,
|
||||
|
||||
@@ -34,11 +34,6 @@ class TestApplicationPython(TestApplicationProto):
|
||||
|
||||
script_path = '/app/python/' + name
|
||||
|
||||
appication_type = self.get_appication_type()
|
||||
|
||||
if appication_type is None:
|
||||
appication_type = self.application_type
|
||||
|
||||
self._load_conf(
|
||||
{
|
||||
"listeners": {
|
||||
@@ -46,7 +41,7 @@ class TestApplicationPython(TestApplicationProto):
|
||||
},
|
||||
"applications": {
|
||||
name: {
|
||||
"type": appication_type,
|
||||
"type": self.get_application_type(),
|
||||
"processes": {"spare": 0},
|
||||
"path": script_path,
|
||||
"working_directory": script_path,
|
||||
|
||||
@@ -7,17 +7,13 @@ class TestApplicationRuby(TestApplicationProto):
|
||||
|
||||
def load(self, script, name='config.ru', **kwargs):
|
||||
script_path = option.test_dir + '/ruby/' + script
|
||||
appication_type = self.get_appication_type()
|
||||
|
||||
if appication_type is None:
|
||||
appication_type = self.application_type
|
||||
|
||||
self._load_conf(
|
||||
{
|
||||
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
||||
"applications": {
|
||||
script: {
|
||||
"type": appication_type,
|
||||
"type": self.get_application_type(),
|
||||
"processes": {"spare": 0},
|
||||
"working_directory": script_path,
|
||||
"script": script_path + '/' + name,
|
||||
|
||||
Reference in New Issue
Block a user