Merge lp:~frankban/juju-quickstart/ftest-fixes into lp:juju-quickstart

Proposed by Francesco Banconi
Status: Merged
Merged at revision: 118
Proposed branch: lp:~frankban/juju-quickstart/ftest-fixes
Merge into: lp:juju-quickstart
Diff against target: 116 lines (+46/-11)
2 files modified
HACKING.rst (+2/-1)
quickstart/tests/functional/test_functional.py (+44/-10)
To merge this branch: bzr merge lp:~frankban/juju-quickstart/ftest-fixes
Reviewer Review Type Date Requested Status
Juju GUI Hackers Pending
Review via email: mp+248755@code.launchpad.net

Description of the change

Make ftests fail if Juju env is not ready.

The functional tests are no longer silently skipped
if the default Juju environment cannot be found.

Also fail if the environment is running, as this
would cause it to be destroyed at the end of the
suite.

QA:
- bootstrap your default environment;
- run `make ftest`/`make fcheck` and ensure
  the functional tests fail
  (environment already bootstrapped);
- destroy your environment;
- run `make fcheck` again and ensure all the
  suites complete successfully.

https://codereview.appspot.com/195690043/

To post a comment you must log in.
Revision history for this message
Francesco Banconi (frankban) wrote :
Download full text (5.7 KiB)

Reviewers: mp+248755_code.launchpad.net,

Message:
Please take a look.

Description:
Make ftests fail if Juju env is not ready.

The functional tests are no longer silently skipped
if the default Juju environment cannot be found.

Also fail if the environment is running, as this
would cause it to be destroyed at the end of the
suite.

QA:
- bootstrap your default environment;
- run `make ftest`/`make fcheck` and ensure
   the functional tests fail
   (environment already bootstrapped);
- destroy your environment;
- run `make fcheck` again and ensure all the
   suites complete successfully.

https://code.launchpad.net/~frankban/juju-quickstart/ftest-fixes/+merge/248755

(do not edit description out of merge proposal)

Please review this at https://codereview.appspot.com/195690043/

Affected files (+48, -11 lines):
   M HACKING.rst
   A [revision details]
   M quickstart/tests/functional/test_functional.py

Index: HACKING.rst
=== modified file 'HACKING.rst'
--- HACKING.rst 2015-01-30 18:06:46 +0000
+++ HACKING.rst 2015-02-05 13:35:53 +0000
@@ -85,6 +85,7 @@
    bootstrapped in the process;
  - a Juju home correctly set up with at least one environment defined in the
    ``environments.yaml`` file;
+- the selected Juju environment not to be in use;
  - SSH keys already generated for the user running the tests;
  - a working Internet connection.

@@ -94,7 +95,7 @@
      make fcheck JUJU_ENV=myenv

  The environment used by the functional suite is destroyed after the tests
-complete. For this reason, **ensure the selected environment is not in
use**.
+complete. The tests fail the selected environment is already in use.

  To run the test using a customized build of Juju, pass the ``JUJU``
environment
  variable to ``make``, e.g.::

Index: [revision details]
=== added file '[revision details]'
--- [revision details] 2012-01-01 00:00:00 +0000
+++ [revision details] 2012-01-01 00:00:00 +0000
@@ -0,0 +1,2 @@
+Old revision:
<email address hidden>
+New revision:
<email address hidden>

Index: quickstart/tests/functional/test_functional.py
=== modified file 'quickstart/tests/functional/test_functional.py'
--- quickstart/tests/functional/test_functional.py 2015-02-03 14:13:09 +0000
+++ quickstart/tests/functional/test_functional.py 2015-02-05 12:19:48 +0000
@@ -36,27 +36,55 @@
  FTEST_ENV_VAR = 'JUJU_QUICKSTART_FTESTS'

-def skip_if_disbled(func):
- """Decorate a test method so that it is only run when
required/possible."""
+def skip_or_fail_if_environment_not_ready(func):
+ """Decorate a test method so that it is only run when asked.
+
+ Also fail if the Juju environment is already running, or if the default
+ environment cannot be found.
+ """
      # Check that functional tests are enabled.
      if os.getenv(FTEST_ENV_VAR) != '1':
          return unittest.skip(
              'to run functional tests, set {} to "1"'.format(FTEST_ENV_VAR))
- # Check that a Juju environment can be found.
- env_name = envs.get_default_env_name()
- if env_name is None:
- return unittest.skip('cannot find a configured Juju environment')

      @fun...

Read more...

Revision history for this message
Jeff Pihach (hatch) wrote :

LGTM Thanks for this follow-up!

https://codereview.appspot.com/195690043/

Revision history for this message
Kyle Adams (kadams54) wrote :
Revision history for this message
Francesco Banconi (frankban) wrote :

*** Submitted:

Make ftests fail if Juju env is not ready.

The functional tests are no longer silently skipped
if the default Juju environment cannot be found.

Also fail if the environment is running, as this
would cause it to be destroyed at the end of the
suite.

QA:
- bootstrap your default environment;
- run `make ftest`/`make fcheck` and ensure
   the functional tests fail
   (environment already bootstrapped);
- destroy your environment;
- run `make fcheck` again and ensure all the
   suites complete successfully.

R=jeff.pihach, kadams54
CC=
https://codereview.appspot.com/195690043

https://codereview.appspot.com/195690043/

Revision history for this message
Francesco Banconi (frankban) wrote :

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'HACKING.rst'
2--- HACKING.rst 2015-01-30 18:06:46 +0000
3+++ HACKING.rst 2015-02-05 13:37:25 +0000
4@@ -85,6 +85,7 @@
5 bootstrapped in the process;
6 - a Juju home correctly set up with at least one environment defined in the
7 ``environments.yaml`` file;
8+- the selected Juju environment not to be in use;
9 - SSH keys already generated for the user running the tests;
10 - a working Internet connection.
11
12@@ -94,7 +95,7 @@
13 make fcheck JUJU_ENV=myenv
14
15 The environment used by the functional suite is destroyed after the tests
16-complete. For this reason, **ensure the selected environment is not in use**.
17+complete. The tests fail the selected environment is already in use.
18
19 To run the test using a customized build of Juju, pass the ``JUJU`` environment
20 variable to ``make``, e.g.::
21
22=== modified file 'quickstart/tests/functional/test_functional.py'
23--- quickstart/tests/functional/test_functional.py 2015-02-03 14:13:09 +0000
24+++ quickstart/tests/functional/test_functional.py 2015-02-05 13:37:25 +0000
25@@ -36,27 +36,55 @@
26 FTEST_ENV_VAR = 'JUJU_QUICKSTART_FTESTS'
27
28
29-def skip_if_disbled(func):
30- """Decorate a test method so that it is only run when required/possible."""
31+def skip_or_fail_if_environment_not_ready(func):
32+ """Decorate a test method so that it is only run when asked.
33+
34+ Also fail if the Juju environment is already running, or if the default
35+ environment cannot be found.
36+ """
37 # Check that functional tests are enabled.
38 if os.getenv(FTEST_ENV_VAR) != '1':
39 return unittest.skip(
40 'to run functional tests, set {} to "1"'.format(FTEST_ENV_VAR))
41- # Check that a Juju environment can be found.
42- env_name = envs.get_default_env_name()
43- if env_name is None:
44- return unittest.skip('cannot find a configured Juju environment')
45
46 @functools.wraps(func)
47 def decorated(cls_or_self):
48- # Decorate the function to update the received class or instance with
49- # the Juju env name.
50+ # If the environment cannot be found, or it is already running,
51+ # do not proceed with setting up the test case class, and make the
52+ # tests fail by setting env_error on the class or instance.
53+ cls_or_self.env_error = None
54+ # Check that a Juju environment can be found.
55+ env_name = envs.get_default_env_name()
56+ if env_name is None:
57+ cls_or_self.env_error = 'cannot find a configured Juju environment'
58+ return
59+ # Check that the Juju environment is not running.
60+ retcode, _, _ = run_juju('status', '-e', env_name)
61+ if not retcode:
62+ cls_or_self.env_error = (
63+ 'the {} Juju environment is already running'.format(env_name))
64+ return
65+ # Update the received class or instance setting the env_name attribute.
66 cls_or_self.env_name = env_name
67 return func(cls_or_self)
68
69 return decorated
70
71
72+def skip_if_environment_not_set(func):
73+ """Decorate a test method so that it is not run without an environment.
74+
75+ The presence of the "env_name" attribute in the TestCase indicates whether
76+ or not the tests can be run.
77+ """
78+ @functools.wraps(func)
79+ def decorated(cls_or_self):
80+ if hasattr(cls_or_self, 'env_name'):
81+ return func(cls_or_self)
82+
83+ return decorated
84+
85+
86 def run_juju(*args):
87 """Run the juju command with the given args.
88
89@@ -81,7 +109,7 @@
90 class TestFunctional(unittest.TestCase):
91
92 @classmethod
93- @skip_if_disbled
94+ @skip_or_fail_if_environment_not_ready
95 def setUpClass(cls):
96 # Run Juju Quickstart to bootstrap Juju and deploy the Juju GUI.
97 # Note that this is done once per suite. The resulting environment is
98@@ -89,11 +117,17 @@
99 cls.retcode, cls.output, cls.error = run_quickstart(cls.env_name)
100
101 @classmethod
102- @skip_if_disbled
103+ @skip_if_environment_not_set
104 def tearDownClass(cls):
105 # Destroy the environment.
106 run_juju('destroy-environment', cls.env_name, '-y', '--force')
107
108+ def setUp(self):
109+ # Let all the tests fail if an environment error has been detected
110+ # in setUpClass.
111+ if self.env_error is not None:
112+ self.fail(self.env_error)
113+
114 def test_executed(self):
115 # The application successfully completed its execution.
116 self.assertEqual(0, self.retcode)

Subscribers

People subscribed via source and target branches