1
# Copyright (C) 2022 Canonical Ltd.
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
from .test_simple import TestWithSimpleTree
21
class TestInventoryUI(TestWithSimpleTree):
23
def test_authors_vs_committer(self):
24
app = self.setUpLoggerhead()
25
res = app.get('/files')
26
# download url in top directory is composed correctly
27
res.mustcontain('/download/rev-1/myfilename')
29
res2 = app.get('/files/head:/folder')
30
# download url in subdirectory is composed correctly
31
res2.mustcontain('/download/rev-1/folder/myfilename')
b'\\ No newline at end of file'