~savoirfairelinux-openerp/knowledge-addons/cmis

« back to all changes in this revision

Viewing changes to cmis/tests/test_model.py

  • Committer: EL HADJI DEM
  • Date: 2014-05-05 21:58:50 UTC
  • Revision ID: elhadji.dem@savoirfairelinux.com-20140505215850-jo97e566pwblo00t
[IMP] take Comments from LP

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
###############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    This module copyright (C) 2010 - 2014 Savoir-faire Linux
 
6
#    (<http://www.savoirfairelinux.com>).
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as
 
10
#    published by the Free Software Foundation, either version 3 of the
 
11
#    License, or (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
###############################################################################
 
22
 
 
23
from openerp.tests.common import TransactionCase
 
24
 
 
25
 
 
26
class test_model(TransactionCase):
 
27
 
 
28
    def setUp(self):
 
29
        super(test_model, self).setUp()
 
30
        # Clean up registries
 
31
        self.registry('ir.model').clear_caches()
 
32
        self.registry('ir.model.data').clear_caches()
 
33
        # Get registries
 
34
        self.model = self.registry("cmis.backend")
 
35
        # Get context
 
36
        self.context = self.model.context_get(self.cr, self.uid)
 
37
 
 
38
        self.vals = {
 
39
            'name': "Test cmis",
 
40
            'version': '1.0',
 
41
            'location': "http://localhost:8081/alfresco/s/cmis",
 
42
            'username': 'admin',
 
43
            'password': 'admin',
 
44
        }
 
45
 
 
46
    def test_create_model(self):
 
47
        model_id = self.model.create(
 
48
            self.cr, self.uid, self.vals, context=self.context)
 
49
        self.assertTrue(model_id)