mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-19 04:12:01 +02:00
Initial commit: OCA Workflow Process packages (456 packages)
This commit is contained in:
commit
d366e42934
18799 changed files with 1284507 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import test_project_template
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
# Copyright 2019 Patrick Wilson <patrickraymondwilson@gmail.com>
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
class TestProjectTemplate(common.TransactionCase):
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.test_customer = self.env["res.partner"].create({"name": "TestCustomer"})
|
||||
self.test_project = self.env["project.project"].create(
|
||||
{
|
||||
"name": "TestProject",
|
||||
"alias_name": "test_alias",
|
||||
"partner_id": self.test_customer.id,
|
||||
}
|
||||
)
|
||||
self.env["project.task"].create(
|
||||
{"name": "TestTask", "project_id": self.test_project.id}
|
||||
)
|
||||
|
||||
# TEST 01: Set project to be a template and test name change
|
||||
def test_on_change_is_template(self):
|
||||
# Test when changing project to a template
|
||||
project_01 = self.test_project
|
||||
project_01.is_template = True
|
||||
project_01.on_change_is_template()
|
||||
self.assertEqual(project_01.name, "TestProject (TEMPLATE)")
|
||||
|
||||
# Test when changing template back to project
|
||||
project_01.is_template = False
|
||||
project_01.on_change_is_template()
|
||||
self.assertEqual(project_01.name, "TestProject")
|
||||
|
||||
# TEST 02: Create project from template
|
||||
def test_create_project_from_template(self):
|
||||
# Set Project Template
|
||||
project_01 = self.test_project
|
||||
project_01.is_template = True
|
||||
project_01.on_change_is_template()
|
||||
|
||||
# Create new Project from Template
|
||||
project_01.create_project_from_template()
|
||||
new_project = self.env["project.project"].search(
|
||||
[("name", "=", "TestProject (COPY)")]
|
||||
)
|
||||
self.assertEqual(len(new_project), 1)
|
||||
|
||||
# TEST 03: Create project from template using non-standard name
|
||||
def test_create_project_from_template_non_standard_name(self):
|
||||
# Set Project Template
|
||||
project_01 = self.test_project
|
||||
project_01.is_template = True
|
||||
project_01.on_change_is_template()
|
||||
# Change the name of project template
|
||||
project_01.name = "TestProject(TEST)"
|
||||
|
||||
# Create new Project from Template
|
||||
project_01.create_project_from_template()
|
||||
new_project = self.env["project.project"].search(
|
||||
[("name", "=", "TestProject(TEST) (COPY)")]
|
||||
)
|
||||
self.assertEqual(len(new_project), 1)
|
||||
Loading…
Add table
Add a link
Reference in a new issue