Skip to content

Commit

Permalink
Add a simple test that the built and checked in PAR files match.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmoor committed Feb 16, 2018
1 parent b28c4c7 commit a21a982
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit a21a982

Please sign in to comment.