Commit 59d4e060 authored by Roque Porchetto's avatar Roque Porchetto Committed by Roque

erp5_scalability_test: initial commit

This business template contains all the objects needed to bootstrap an ERP5 instance in order to prepare it for scalability tests:
- A business configuration object (generated after standard configurator installation)
- A bootstrap script (pending)
- A script that generates a specific amount of users (person-assignment-login per each)
parent 510ec8f0
# Script that creates "user_number" user for scalabiility tests:
# creates and validates persons
# adds assignment and starts it
# creates user (login credentials)
# password is random for every call
# creates the scalability users file
from DateTime import DateTime
import random
import string
request = context.REQUEST
portal = context.getPortalObject()
portal_catalog = portal.portal_catalog
now = DateTime()
status_code = 0
error_message = "No error."
user_number = request.get('user_number')
if user_number is None: return {'status_code' : 1, 'error_message': "Parameter 'user_number' is required."}
password = ''.join(random.choice(string.digits + string.letters) for i in xrange(10))
try:
organisation = portal_catalog.getResultValue(
portal_type="Organisation",
title = 'Scalability company'
).getObject().getRelativeUrl()
for i in xrange(0, int(user_number)):
person = portal.person_module.newContent(
portal_type = "Person",
first_name = "scalability",
last_name = "user %i" % i,
function_list = ["company/manager"],
)
person.validate()
assignment = person.newContent(
portal_type = "Assignment",
title = "user assignment",
function_list = ["company/manager"],
destination_relative_url = organisation,
destination = organisation,
group_list = ["my_group"],
start_date = now,
stop_date = DateTime(3000, 1, 1)
)
assignment.open()
user = person.newContent(
portal_type = "ERP5 Login",
default_reference = "scalability_user_%i" % i,
password = password,
)
user.validate()
#context.createScalabilityTestUsersFile(user_number, password)
except Exception as e:
status_code = 1
error_message = str(e)
return {'status_code' : status_code, 'error_message': error_message, 'password' : password }
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="PythonScript" module="Products.PythonScripts.PythonScript"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>Script_magic</string> </key>
<value> <int>3</int> </value>
</item>
<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_container</string> </key>
<value> <string>container</string> </value>
</item>
<item>
<key> <string>name_context</string> </key>
<value> <string>context</string> </value>
</item>
<item>
<key> <string>name_m_self</string> </key>
<value> <string>script</string> </value>
</item>
<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>_params</string> </key>
<value> <string></string> </value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>ERP5Site_bootstrapScalabilityTest</string> </value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
erp5_configurator_standard
\ No newline at end of file
business_configuration_module/default_standard_configuration
\ No newline at end of file
business_configuration_module/default_standard_configuration
\ No newline at end of file
erp5_scalability_test
\ No newline at end of file
erp5_scalability_test
\ No newline at end of file
001
\ No newline at end of file
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