Tests: fixed loading selected module version.
Previously, for PHP, Ruby, and Perl the latest version was always loaded in multi-version tests.
This commit is contained in:
@@ -7,13 +7,17 @@ class TestApplicationPerl(TestApplicationProto):
|
|||||||
|
|
||||||
def load(self, script, name='psgi.pl', **kwargs):
|
def load(self, script, name='psgi.pl', **kwargs):
|
||||||
script_path = option.test_dir + '/perl/' + script
|
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(
|
self._load_conf(
|
||||||
{
|
{
|
||||||
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
||||||
"applications": {
|
"applications": {
|
||||||
script: {
|
script: {
|
||||||
"type": self.application_type,
|
"type": appication_type,
|
||||||
"processes": {"spare": 0},
|
"processes": {"spare": 0},
|
||||||
"working_directory": script_path,
|
"working_directory": script_path,
|
||||||
"script": script_path + '/' + name,
|
"script": script_path + '/' + name,
|
||||||
|
|||||||
@@ -7,13 +7,17 @@ class TestApplicationPHP(TestApplicationProto):
|
|||||||
|
|
||||||
def load(self, script, index='index.php', **kwargs):
|
def load(self, script, index='index.php', **kwargs):
|
||||||
script_path = option.test_dir + '/php/' + script
|
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(
|
self._load_conf(
|
||||||
{
|
{
|
||||||
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
||||||
"applications": {
|
"applications": {
|
||||||
script: {
|
script: {
|
||||||
"type": self.application_type,
|
"type": appication_type,
|
||||||
"processes": {"spare": 0},
|
"processes": {"spare": 0},
|
||||||
"root": script_path,
|
"root": script_path,
|
||||||
"working_directory": script_path,
|
"working_directory": script_path,
|
||||||
|
|||||||
@@ -7,13 +7,17 @@ class TestApplicationRuby(TestApplicationProto):
|
|||||||
|
|
||||||
def load(self, script, name='config.ru', **kwargs):
|
def load(self, script, name='config.ru', **kwargs):
|
||||||
script_path = option.test_dir + '/ruby/' + script
|
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(
|
self._load_conf(
|
||||||
{
|
{
|
||||||
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
"listeners": {"*:7080": {"pass": "applications/" + script}},
|
||||||
"applications": {
|
"applications": {
|
||||||
script: {
|
script: {
|
||||||
"type": self.application_type,
|
"type": appication_type,
|
||||||
"processes": {"spare": 0},
|
"processes": {"spare": 0},
|
||||||
"working_directory": script_path,
|
"working_directory": script_path,
|
||||||
"script": script_path + '/' + name,
|
"script": script_path + '/' + name,
|
||||||
|
|||||||
Reference in New Issue
Block a user