Commit 947acce5 authored by Ivan Tyagov's avatar Ivan Tyagov

Add testing for showing default pad in KM's front page in anonymous mode.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39086 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3dd1a2a6
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="ZopePageTemplate" module="Products.PageTemplates.ZopePageTemplate"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>_bind_names</string> </key>
<value>
<object>
<klass>
<global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key> <string>_asgns</string> </key>
<value>
<dictionary>
<item>
<key> <string>name_subpath</string> </key>
<value> <string>traverse_subpath</string> </value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key> <string>_text</string> </key>
<value> <string encoding="cdata"><![CDATA[
<html xmlns:tal="http://xml.zope.org/namespaces/tal"\n
xmlns:metal="http://xml.zope.org/namespaces/metal">\n
<head>\n
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">\n
<title tal:content="template/getId"/>\n
</head>\n
<body >\n
<table cellpadding="1" cellspacing="1" border="1">\n
<thead>\n
<tr><td rowspan="1" colspan="3" tal:content="template/getId"/></tr>\n
</thead><tbody>\n
\n
\n
<tal:block metal:use-macro="here/Zuite_CommonTemplate/macros/init" />\n
\n
<tal:block metal:use-macro="here/KMZuite_CommonTemplate/macros/createKMWebSite" />\n
\n
\n
<tr>\n
\t<td>openAndWait</td>\n
\t<td>${base_url}/web_site_module/km_test_web_site</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>clickAndWait</td>\n
\t<td>login-logout-link</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>verifyTextPresent</td>\n
\t<td>You have been logged out</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>verifyTextPresent</td>\n
\t<td>Documentation</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>verifyTextPresent</td>\n
\t<td>Latest Documents</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>verifyTextPresent</td>\n
\t<td>News</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>verifyTextPresent</td>\n
\t<td>Join ERP5 Network</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>clickAndWait</td>\n
\t<td>login-logout-link</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>type</td>\n
\t<td>__ac_name</td>\n
\t<td>zope</td>\n
</tr>\n
<tr>\n
\t<td>type</td>\n
\t<td>password</td>\n
\t<td>zope</td>\n
</tr>\n
<tr>\n
\t<td>clickAndWait</td>\n
\t<td>WebSite_login:method</td>\n
\t<td></td>\n
</tr>\n
<tr>\n
\t<td>verifyTextPresent</td>\n
\t<td>Logout</td>\n
\t<td></td>\n
</tr>\n
\n
<tal:block metal:use-macro="here/KMZuite_CommonTemplate/macros/deleteKMWebSite" />\n
\n
</tbody></table>\n
</body>\n
</html>\n
\n
]]></string> </value>
</item>
<item>
<key> <string>content_type</string> </key>
<value> <string>text/html</string> </value>
</item>
<item>
<key> <string>expand</string> </key>
<value> <int>0</int> </value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>testDefaultPadAnonymousMode</string> </value>
</item>
<item>
<key> <string>title</string> </key>
<value> <string></string> </value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
......@@ -64,6 +64,16 @@ for reference in (\'minimal_km_footer\', \'km.web.site.test.page\',):\n
reference = reference)\n
if km_page.getValidationState()==\'draft\':\n
km_page.publish()\n
\n
# publish default knowledge pad \n
pad = portal.restrictedTraverse("knowledge_pad_module/erp5_km_public_front_pad")\n
if pad.getValidationState()!=\'public\':\n
pad.visible()\n
pad.public()\n
for box in pad.objectValues():\n
box.visible()\n
box.public()\n
\n
# clear cache so UI is regenarated\n
portal.portal_caches.clearAllCache()\n
\n
......@@ -120,6 +130,8 @@ return "Created Successfully."\n
<string>_getiter_</string>
<string>reference</string>
<string>km_page</string>
<string>pad</string>
<string>box</string>
</tuple>
</value>
</item>
......
112
\ No newline at end of file
113
\ No newline at end of file
knowledge_pad_module/erp5_km_public_front_pad
knowledge_pad_module/erp5_km_public_front_pad/**
portal_categories/classification
portal_categories/classification/**
portal_categories/group/test_zuite
portal_categories/group/test_zuite/**
portal_tests/erp5_km_zuite
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment