Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a simple test that the built and checked in PAR files match. #10

Merged
merged 1 commit into from Feb 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion WORKSPACE
Expand Up @@ -52,7 +52,8 @@ _piptool_install()
git_repository(
name = "subpar",
remote = "https://github.com/google/subpar",
tag = "1.1.0",
# HEAD as of 2018/02/15
commit = "1f695ee5d42585a66d9dd9b71219eb8551e59c89",
)

# Test data for WHL tool testing.
Expand Down
11 changes: 11 additions & 0 deletions tools/BUILD
Expand Up @@ -17,3 +17,14 @@ licenses(["notice"]) # Apache 2.0

# This is generated and updated by ./update_tools.sh
exports_files(["piptool.par", "whltool.par"])

py_test(
name = "par_test",
srcs = ["par_test.py"],
data = [
"//rules_python:piptool.par",
"//rules_python:whltool.par",
":piptool.par",
":whltool.par",
],
)
45 changes: 45 additions & 0 deletions tools/par_test.py
@@ -0,0 +1,45 @@
# Copyright 2017 The Bazel Authors. 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.

import hashlib
import os
import unittest


def TestData(name):
return os.path.join(os.environ['TEST_SRCDIR'], 'io_bazel_rules_python', name)


class WheelTest(unittest.TestCase):

def test_piptool_matches(self):
with open(TestData('rules_python/piptool.par'), 'r') as f:
built = f.read()
with open(TestData('tools/piptool.par'), 'r') as f:
checked_in = f.read()
self.assertEquals(
hashlib.sha256(built).hexdigest(), hashlib.sha256(checked_in).hexdigest(),
'The checked in tools/piptool.par does not match the latest build.')

def test_whltool_matches(self):
with open(TestData('rules_python/whltool.par'), 'r') as f:
built = f.read()
with open(TestData('tools/whltool.par'), 'r') as f:
checked_in = f.read()
self.assertEquals(
hashlib.sha256(built).hexdigest(), hashlib.sha256(checked_in).hexdigest(),
'The checked in tools/whltool.par does not match the latest build.')

if __name__ == '__main__':
unittest.main()
Binary file modified tools/piptool.par
Binary file not shown.
Binary file modified tools/whltool.par
Binary file not shown.