mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-19 09:32:01 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
44
odoo-bringout-oca-ocb-web/web/tests/test_domain.py
Normal file
44
odoo-bringout-oca-ocb-web/web/tests/test_domain.py
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
|
||||
from odoo.addons.base.tests.common import HttpCaseWithUserDemo
|
||||
from odoo.tests import tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class DomainTest(HttpCaseWithUserDemo):
|
||||
|
||||
def test_domain_validate(self):
|
||||
self.authenticate("demo", "demo")
|
||||
|
||||
with mute_logger('odoo.http'):
|
||||
resp = self.url_open(
|
||||
'/web/domain/validate',
|
||||
headers={'Content-Type': 'application/json'},
|
||||
data=json.dumps({'params': {'model':'i', 'domain':[]}}),
|
||||
)
|
||||
self.assertEqual(resp.json()['error']['data']['message'], "Invalid model: i")
|
||||
|
||||
resp = self.url_open(
|
||||
'/web/domain/validate',
|
||||
headers={'Content-Type': 'application/json'},
|
||||
data=json.dumps({'params': {'model':'res.users', 'domain':[]}}),
|
||||
)
|
||||
self.assertEqual(resp.json()['result'], True)
|
||||
|
||||
resp = self.url_open(
|
||||
'/web/domain/validate',
|
||||
headers={'Content-Type': 'application/json'},
|
||||
data=json.dumps({'params': {'model':'res.users', 'domain':[('name', 'ilike', 'ad')]}}),
|
||||
)
|
||||
self.assertEqual(resp.json()['result'], True)
|
||||
|
||||
resp = self.url_open(
|
||||
'/web/domain/validate',
|
||||
headers={'Content-Type': 'application/json'},
|
||||
data=json.dumps({'params': {'model':'res.users', 'domain':[('hop')]}}),
|
||||
)
|
||||
self.assertEqual(resp.json()['result'], False)
|
||||
Loading…
Add table
Add a link
Reference in a new issue