You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.3 KiB
76 lines
2.3 KiB
from ee.utils import test
|
|
from ee.cli.main import get_test_app
|
|
|
|
|
|
class CliTestCaseStack(test.EETestCase):
|
|
|
|
def test_ee_cli(self):
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_web(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--web'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_admin(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--admin'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_mail(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--mail'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_nginx(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--nginx'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_php(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--php'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_mysql(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--mysql'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_postfix(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--postfix'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_wpcli(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--wpcli'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_phpmyadmin(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--phpmyadmin'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_adminer(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--adminer'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|
|
def test_ee_cli_stack_install_utils(self):
|
|
self.app = get_test_app(argv=['stack', 'install', '--utils'])
|
|
self.app.setup()
|
|
self.app.run()
|
|
self.app.close()
|
|
|