web/test/unittest_views_embeding.py
branchstable
changeset 9013 b4bcabf55e77
parent 9012 2cf127d4f5fd
parent 9010 1f3d4d829e63
child 9014 dfa4da8a53a0
child 9128 d988eec2d5d3
equal deleted inserted replaced
9012:2cf127d4f5fd 9013:b4bcabf55e77
     1 # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
       
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
       
     3 #
       
     4 # This file is part of CubicWeb.
       
     5 #
       
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
       
     7 # terms of the GNU Lesser General Public License as published by the Free
       
     8 # Software Foundation, either version 2.1 of the License, or (at your option)
       
     9 # any later version.
       
    10 #
       
    11 # CubicWeb is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
       
    13 # FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
       
    14 # details.
       
    15 #
       
    16 # You should have received a copy of the GNU Lesser General Public License along
       
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
       
    18 """
       
    19 
       
    20 """
       
    21 
       
    22 from logilab.common.testlib import TestCase, unittest_main
       
    23 
       
    24 from cubicweb.web.views.embedding import prefix_links
       
    25 
       
    26 class UILIBTC(TestCase):
       
    27 
       
    28 
       
    29     def test_prefix_links(self):
       
    30         """suppose we are embedding http://embedded.com/page1.html"""
       
    31         orig = ['<a href="http://www.perdu.com">perdu ?</a>',
       
    32         '<a href="http://embedded.com/page1.html">perdu ?</a>',
       
    33         '<a href="/page2.html">perdu ?</a>',
       
    34         '<a href="page3.html">perdu ?</a>',
       
    35         '<img src="http://www.perdu.com/img.png"/>',
       
    36         '<img src="/img.png"/>',
       
    37         '<img src="img.png"/>',
       
    38         ]
       
    39         expected = ['<a href="PREFIXhttp%3A%2F%2Fwww.perdu.com">perdu ?</a>',
       
    40         '<a href="PREFIXhttp%3A%2F%2Fembedded.com%2Fpage1.html">perdu ?</a>',
       
    41         '<a href="PREFIXhttp%3A%2F%2Fembedded.com%2Fpage2.html">perdu ?</a>',
       
    42         '<a href="PREFIXhttp%3A%2F%2Fembedded.com%2Fpage3.html">perdu ?</a>',
       
    43         '<img src="http://www.perdu.com/img.png"/>',
       
    44         '<img src="http://embedded.com/img.png"/>',
       
    45         '<img src="http://embedded.com/img.png"/>',
       
    46         ]
       
    47         for orig_a, expected_a in zip(orig, expected):
       
    48             got = prefix_links(orig_a, 'PREFIX', 'http://embedded.com/page1.html')
       
    49             self.assertEqual(got, expected_a)
       
    50 
       
    51 if __name__ == '__main__':
       
    52     unittest_main()
       
    53