aboutsummaryrefslogtreecommitdiff
path: root/tools/private/update_deps/update_file_test.py
blob: 01c6ec74b01a6e71d0d7e23910dd72ee9f66f5b5 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Copyright 2023 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 tools.private.update_deps.update_file import replace_snippet, unified_diff


class TestReplaceSnippet(unittest.TestCase):
    def test_replace_simple(self):
        current = """\
Before the snippet

# Start marker
To be replaced
It may have the '# Start marker' or '# End marker' in the middle,
But it has to be in the beginning of the line to mark the end of a region.
# End marker

After the snippet
"""
        snippet = "Replaced"
        got = replace_snippet(
            current=current,
            snippet="Replaced",
            start_marker="# Start marker",
            end_marker="# End marker",
        )

        want = """\
Before the snippet

# Start marker
Replaced
# End marker

After the snippet
"""
        self.assertEqual(want, got)

    def test_replace_indented(self):
        current = """\
Before the snippet

    # Start marker
    To be replaced
    # End marker

After the snippet
"""
        got = replace_snippet(
            current=current,
            snippet="    Replaced",
            start_marker="# Start marker",
            end_marker="# End marker",
        )

        want = """\
Before the snippet

    # Start marker
    Replaced
    # End marker

After the snippet
"""
        self.assertEqual(want, got)

    def test_raises_if_start_is_not_found(self):
        with self.assertRaises(RuntimeError) as exc:
            replace_snippet(
                current="foo",
                snippet="",
                start_marker="start",
                end_marker="end",
            )

        self.assertEqual(exc.exception.args[0], "Start marker 'start' was not found")

    def test_raises_if_end_is_not_found(self):
        with self.assertRaises(RuntimeError) as exc:
            replace_snippet(
                current="start",
                snippet="",
                start_marker="start",
                end_marker="end",
            )

        self.assertEqual(exc.exception.args[0], "End marker 'end' was not found")


class TestUnifiedDiff(unittest.TestCase):
    def test_diff(self):
        give_a = """\
First line
second line
Third line
"""
        give_b = """\
First line
Second line
Third line
"""
        got = unified_diff("filename", give_a, give_b)
        want = """\
--- a/filename
+++ b/filename
@@ -1,3 +1,3 @@
 First line
-second line
+Second line
 Third line"""
        self.assertEqual(want, got)


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