From 4479f695a28f86984c0ace3511b084a5ec81f6d8 Mon Sep 17 00:00:00 2001
From: Gabriel Monnerat <gabriel@tiolive.com>
Date: Thu, 13 Jan 2011 17:22:33 +0000
Subject: [PATCH] Add initial test to UNG

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42310 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 .../TestTemplateItem/testUNG.py               | 89 +++++++++++++++++++
 bt5/erp5_web_ung_theme/bt/copyright_list      |  1 +
 bt5/erp5_web_ung_theme/bt/revision            |  2 +-
 .../bt/template_test_id_list                  |  1 +
 4 files changed, 92 insertions(+), 1 deletion(-)
 create mode 100644 bt5/erp5_web_ung_theme/TestTemplateItem/testUNG.py
 create mode 100644 bt5/erp5_web_ung_theme/bt/copyright_list
 create mode 100644 bt5/erp5_web_ung_theme/bt/template_test_id_list

diff --git a/bt5/erp5_web_ung_theme/TestTemplateItem/testUNG.py b/bt5/erp5_web_ung_theme/TestTemplateItem/testUNG.py
new file mode 100644
index 0000000000..5af30ecafa
--- /dev/null
+++ b/bt5/erp5_web_ung_theme/TestTemplateItem/testUNG.py
@@ -0,0 +1,89 @@
+##############################################################################
+#
+# Copyright (c) 2002-2011 Nexedi SA and Contributors. All Rights Reserved.
+#                         Gabriel M. Monnerat <gabriel@tiolive.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsibility of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# guarantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+##############################################################################
+
+from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
+from DateTime import DateTime
+import transaction
+
+class TestUNG(ERP5TypeTestCase):
+  """
+    UNG Test Case
+  """
+
+  def getTitle(self):
+    return "UNG Tests"
+
+  def getBusinessTemplateList(self):
+    return ('erp5_base',
+            'erp5_ingestion',
+            'erp5_web',
+            'erp5_dms',
+            'erp5_jquery',
+            'erp5_jquery_plugin_mbmenu',
+            'erp5_jquery_plugin_sheet',
+            'erp5_jquery_ui',
+            'erp5_jquery_plugin_jqchart',
+            'erp5_jquery_plugin_colorpicker',
+            'erp5_jquery_plugin_elastic',
+            'erp5_jquery_sheet_editor',
+            'erp5_jquery_plugin_hotkey',
+            'erp5_jquery_plugin_jgraduate',
+            'erp5_jquery_plugin_svgicon',
+            'erp5_jquery_plugin_jquerybbq',
+            'erp5_jquery_plugin_spinbtn',
+            'erp5_jquery_plugin_svg_editor',
+            'erp5_svg_editor',
+            'erp5_xinha_editor',
+            'erp5_knowledge_pad',
+            'erp5_ingestion_mysql_innodb_catalog',
+            'erp5_web_ung_core',
+            'erp5_web_ung_role',
+            'erp5_web_ung_theme')
+
+  def createDocumentUsingTemplate(self, template):
+    self.portal.ERP5Site_createNewWebDocument(template)
+    transaction.commit()
+    self.tic()
+
+  def testERP5Site_createNewWebDocument(self):
+    """
+      Test if the script creates the objects using Templates correctly
+      XXX - Refactor tests to better validate the creation of objects
+    """
+    self.createDocumentUsingTemplate("web_page_template")
+    web_page_search = self.portal.portal_catalog(portal_type="Web Page",
+                                                reference="default-Web.Page.Reference")
+    self.assertEquals(2, len(web_page_search))
+    self.createDocumentUsingTemplate("web_table_template")
+    web_table_search = self.portal.portal_catalog(portal_type="Web Table",
+                                                reference="default-Web.Table.Reference")
+    self.assertEquals(2, len(web_table_search))
+    self.createDocumentUsingTemplate("web_illustration_template")
+    web_illustration_search = self.portal.portal_catalog(portal_type="Web Illustration",
+                                                reference="default-Web.Illustration.Reference")
+    self.assertEquals(2, len(web_illustration_search))
\ No newline at end of file
diff --git a/bt5/erp5_web_ung_theme/bt/copyright_list b/bt5/erp5_web_ung_theme/bt/copyright_list
new file mode 100644
index 0000000000..fe948b9fb7
--- /dev/null
+++ b/bt5/erp5_web_ung_theme/bt/copyright_list
@@ -0,0 +1 @@
+Copyright (c) 2010 Nexedi SA
\ No newline at end of file
diff --git a/bt5/erp5_web_ung_theme/bt/revision b/bt5/erp5_web_ung_theme/bt/revision
index 9da06a1833..05b9b66ffd 100644
--- a/bt5/erp5_web_ung_theme/bt/revision
+++ b/bt5/erp5_web_ung_theme/bt/revision
@@ -1 +1 @@
-160
\ No newline at end of file
+162
\ No newline at end of file
diff --git a/bt5/erp5_web_ung_theme/bt/template_test_id_list b/bt5/erp5_web_ung_theme/bt/template_test_id_list
new file mode 100644
index 0000000000..a9ca2e2937
--- /dev/null
+++ b/bt5/erp5_web_ung_theme/bt/template_test_id_list
@@ -0,0 +1 @@
+testUNG
\ No newline at end of file
-- 
2.30.9