-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1349 from dhermes/move-system-test-runner-to-python
Move system test runner from bash to Python
- Loading branch information
Showing
9 changed files
with
261 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# Copyright 2016 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""Attempt to run system tests. | ||
If the system tests are being run on Travis, no test need be run if | ||
the build is for a PR and not a merged commit. | ||
If being run as part of a Travis build for a merged commit, the | ||
encrypted `key.json` file need be decrypted before running tests. | ||
""" | ||
|
||
|
||
import os | ||
import subprocess | ||
import sys | ||
|
||
from system_tests.run_system_test import run_module_tests | ||
|
||
|
||
MODULES = ( | ||
'datastore', | ||
'storage', | ||
'pubsub', | ||
'bigquery', | ||
) | ||
SCRIPTS_DIR = os.path.dirname(__file__) | ||
ENCRYPTED_KEYFILE = os.path.abspath( | ||
os.path.join(SCRIPTS_DIR, '..', 'system_tests', 'key.json.enc')) | ||
|
||
|
||
def check_environment(): | ||
"""Check what environment this is running in. | ||
In particular, if the environment is Travis. | ||
:rtype: tuple | ||
:returns: A pair of booleans. The first indicates if the test | ||
is running in Travis and the second indicates if | ||
the current build is a non-PR for a merge to master. | ||
""" | ||
if os.getenv('TRAVIS') == 'true': | ||
is_travis = True | ||
non_pr = (os.getenv('TRAVIS_PULL_REQUEST') == 'false' and | ||
os.getenv('TRAVIS_BRANCH') == 'master') | ||
else: | ||
is_travis = non_pr = False | ||
|
||
return is_travis, non_pr | ||
|
||
|
||
def decrypt_keyfile(): | ||
"""Decrypt a keyfile.""" | ||
print('Running in Travis during merge, decrypting stored ' | ||
'key file.') | ||
|
||
encrypted_key = os.getenv('encrypted_a1b222e8c14d_key') | ||
encrypted_iv = os.getenv('encrypted_a1b222e8c14d_iv') | ||
out_file = os.getenv('GOOGLE_APPLICATION_CREDENTIALS') | ||
# Convert encrypted key file into decrypted file to be used. | ||
subprocess.call([ | ||
'openssl', 'aes-256-cbc', | ||
'-K', encrypted_key, | ||
'-iv', encrypted_iv, | ||
'-in', ENCRYPTED_KEYFILE, | ||
'-out', out_file, '-d' | ||
]) | ||
|
||
|
||
def prepare_to_run(): | ||
"""Prepare to run system tests. | ||
If on Travis during a PR, exit the entire program; there is | ||
no need to run the system tests. | ||
If on Travis during a build for a non-PR merge to master, | ||
decrypts stored keyfile. | ||
""" | ||
is_travis, non_pr = check_environment() | ||
# Nothing to prepare outside of Travis. Proceed to tests. | ||
if not is_travis: | ||
return | ||
|
||
# On a Travis PR, exit the program. | ||
if not non_pr: | ||
print('Running in Travis during non-merge to master, ' | ||
'doing nothing.') | ||
sys.exit(0) | ||
|
||
# On a Travis build for a merge commit to master, decrypt. | ||
decrypt_keyfile() | ||
|
||
|
||
def main(): | ||
"""Run all the system tests if necessary.""" | ||
prepare_to_run() | ||
for module in MODULES: | ||
run_module_tests(module) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.