xref: /aosp_15_r20/tools/external_updater/tests/endtoend/treebuilder/test_treebuilder.py (revision 3c875a214f382db1236d28570d1304ce57138f32)
1#
2# Copyright (C) 2023 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16"""Tests for treebuilder."""
17from pathlib import Path
18
19import pytest
20
21from .treebuilder import TreeBuilder
22
23
24class TestTreeBuilder:
25    """Tests for treebuilder.TreeBuilder"""
26
27    def test_repo_tree(self, tmp_path: Path) -> None:
28        """Tests that a TreeBuilder is created."""
29        builder = TreeBuilder(tmp_path)
30        assert builder.temp_dir == tmp_path
31
32    def test_repo_tree_error_if_name_reused(self, tmp_path: Path) -> None:
33        """Tests that KeyError is raised if a tree name is reused."""
34        builder = TreeBuilder(tmp_path)
35        builder.repo_tree("foo")
36        builder.repo_tree("bar")
37        with pytest.raises(KeyError):
38            builder.repo_tree("foo")
39