/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/tests/test_inventory_ui.py

  • Committer: Ubuntu One Auto Copilot
  • Author(s): Ioana Lasc
  • Date: 2022-09-01 06:28:23 UTC
  • mfrom: (534.1.2 fix-download-links)
  • Revision ID: otto-copilot@canonical.com-20220901062823-hxsa870hkm7vbcud
Fix file download links in inventory UI

Merged from https://code.launchpad.net/~ilasc/loggerhead/fix-download-links/+merge/429230

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2022 Canonical Ltd.
 
2
#
 
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.
 
7
#
 
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.
 
12
#
 
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
 
16
#
 
17
 
 
18
from .test_simple import TestWithSimpleTree
 
19
 
 
20
 
 
21
class TestInventoryUI(TestWithSimpleTree):
 
22
 
 
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')
 
28
 
 
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'