123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # -*- coding: utf-8 -*-
- ##############################################################################
- #
- # OpenERP, Open Source Management Solution
- # Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero General Public License as
- # published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- ##############################################################################
- from openerp.tests import common
- class TestModelAudit(common.TransactionCase):
- def test_get_action_url(self):
- """Test if action url start with http."""
- record = self.env.ref("mgmtsystem_audit.mgmtsystem_audit_demo")
- ret = record.get_action_url()
- self.assertEqual(isinstance(ret, basestring), True)
- self.assertEqual(ret.startswith('http'), True)
- def test_button_close(self):
- """Test if button close change audit state to close."""
- record = self.env.ref("mgmtsystem_audit.mgmtsystem_audit_demo")
- record.state = "open"
- self.assertEqual(record.state, "open")
- record.button_close()
- self.assertEqual(record.state, "done")
- def test_get_lines_by_procedure(self):
- line_id = self.env["mgmtsystem.verification.line"].create({
- "name": "test",
- "procedure_id": self.env.ref("document_page.demo_page1").id
- })
- line_id2 = self.env["mgmtsystem.verification.line"].create({
- "name": "test2",
- })
- record = self.env.ref("mgmtsystem_audit.mgmtsystem_audit_demo")
- record.line_ids = [line_id.id, line_id2.id]
- q = record.get_lines_by_procedure()
- self.assertTrue(q)
|