-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix findObjects for the case where the webserver rewrites the portal …
…name
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from plone.app.linkintegrity.tests.base import ATBaseTestCase | ||
from plone.app.linkintegrity.tests.base import DXBaseTestCase | ||
from plone.app.linkintegrity.handlers import findObject | ||
|
||
|
||
class FindObjectTests: | ||
""" testing the handlers.findObject function """ | ||
|
||
def test_relative_to_portal_root_1(self): | ||
obj, components = findObject(self.portal.doc1, '/plone/doc2') | ||
self.assertEqual(obj.absolute_url_path(), '/plone/doc2') | ||
self.assertEqual(components, '') | ||
|
||
def test_relative_to_portal_root_2(self): | ||
# Prevent regression. See https://github.com/plone/plone.app.linkintegrity/pull/17 | ||
obj, components = findObject(self.portal.doc1, '/doc2') | ||
self.assertEqual(obj.absolute_url_path(), '/plone/doc2') | ||
self.assertEqual(components, '') | ||
|
||
def test_webserver_rewrites_portal_name(self): | ||
# test the case where a webserver rewrites the portal name, e.g. for Apache: | ||
# RewriteRule ^/wssitename(.*)$ http://localhost:8080/VirtualHostBase/http/my.domain.com:80/plonesitename/VirtualHostRoot/_vh_wssitename$1 | ||
self.portal.REQUEST.other['VirtualRootPhysicalPath'] = ('', 'plone') | ||
self.portal.REQUEST._script = ['plone_foo'] | ||
obj, components = findObject(self.portal.doc1, '/plone_foo/doc2') | ||
self.assertEqual(obj.absolute_url_path(), '/plone_foo/doc2') | ||
self.assertEqual(obj.getPhysicalPath(), ('','plone', 'doc2')) | ||
self.assertEqual(components, '') | ||
|
||
class ReferenceGenerationDXTestCase(DXBaseTestCase, FindObjectTests): | ||
"""findObject testcase for dx content types""" | ||
|
||
|
||
class ReferenceGenerationATTestCase(ATBaseTestCase, FindObjectTests): | ||
"""findObject testcase for at content types""" |