summaryrefslogtreecommitdiff
path: root/pkg/releasing/release_tools_test.py
blob: 7b2b443c6fd8d84a11ca7ccdf36702bfde3c8a4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 2019 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 unittest

from pkg.releasing import release_tools


class ReleaseToolsTest(unittest.TestCase):

  def test_workspace_content_full(self):
    content = release_tools.workspace_content(
        url='http://github.com',
        repo='foo-bar',
        sha256='@computed@',
        setup_file='my_setup.bzl',
        deps_method='my_deps',
        toolchains_method='my_tools')
    self.assertGreater(content.find(' name = "foo_bar",'), 0, content)
    self.assertGreater(content.find(
        '\nload("@foo_bar//:my_setup.bzl", "my_deps", "my_tools")\n'), 0,
                       content)
    self.assertGreater(content.find('\nmy_deps()\n'), 0)
    self.assertGreater(content.find('\nmy_tools()\n'), 0, content)

  def test_workspace_content_notools(self):
    content = release_tools.workspace_content(
        url='http://github.com',
        repo='foo-bar',
        sha256='@computed@',
        setup_file='my_setup.bzl',
        deps_method='my_deps')
    self.assertGreater(content.find(
        '\nload("@foo_bar//:my_setup.bzl", "my_deps")\n'), 0, content)
    self.assertGreater(content.find('\nmy_deps()\n'), 0)
    self.assertLess(content.find('\nmy_tools()\n'), 0)

  def test_workspace_content_nodeps(self):
    content = release_tools.workspace_content(
        url='http://github.com',
        repo='foo-bar',
        sha256='@computed@',
        setup_file='my_setup.bzl',
        toolchains_method='my_tools')
    self.assertGreater(content.find(
        '\nload("@foo_bar//:my_setup.bzl", "my_tools")\n'), 0, content)
    self.assertLess(content.find('\nmy_deps()\n'), 0)
    self.assertGreater(content.find('\nmy_tools()\n'), 0)

  def test_workspace_content_minimal(self):
    content = release_tools.workspace_content(
        url='http://github.com',
        repo='foo-bar',
        sha256='@computed@')
    self.assertLess(content.find('\nload("@foo_bar'), 0)

  def test_workspace_content_mirror(self):
    content = release_tools.workspace_content(
        url='http://github.com/foo/bar',
        mirror_url='http://mirror/github.com/foo/bar',
        repo='foo-bar',
        sha256='@computed@')
    url_pos = content.find('http://github.com/foo/bar')
    mirror_pos = content.find('http://mirror/github.com/foo/bar')
    self.assertGreater(url_pos, 0)
    self.assertGreater(mirror_pos, 0)
    self.assertLess(mirror_pos, url_pos)


if __name__ == '__main__':
  unittest.main()