You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

78 lines
2.5 KiB

/* Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
* License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */
odoo.define_section('web_duplicate_visibility',
['web.data', 'web.FormView'],
function(test, mock){
"use strict";
function assertDuplicate(assert, data, FormView, form_tag, visible) {
mock.add('test.model:read', function () {
return [{ id: 1, a: 'foo', b: 'bar', c: 'baz' }];
});
mock.add('test.model:fields_view_get', function () {
return {
type: 'form',
fields: {
a: {type: 'char', string: "A"},
b: {type: 'char', string: "B"},
c: {type: 'char', string: "C"}
},
arch: form_tag +
' <field name="a"/>' +
' <field name="b"/>' +
' <field name="c"/>' +
'</form>',
};
});
var ds = new data.DataSetStatic(null, 'test.model', null, [1]);
ds.index = 0;
var $fix = $( "#qunit-fixture");
var form = new FormView(
{},
ds,
false,
{
sidebar: true,
}
);
form.appendTo($fix);
form.do_show();
form.render_sidebar();
var $fix = $( "#qunit-fixture");
var actions = $fix.find('.oe_sidebar a[data-section="other"]').filter(
function(i, obj){
return obj.text.trim() == "Duplicate";
}
);
assert.strictEqual(
actions.length, visible, "duplicate state is not as expected"
);
};
function compare(form_tag, visible) {
return function (assert, data, FormView) {
return assertDuplicate(assert, data, FormView, form_tag, visible);
}
}
test('Duplicate button visible when nothing set',
compare('<form>', 1));
test('Duplicate button visible when create="1"',
compare('<form create="1">', 1));
test('Duplicate button visible when duplicate="1"',
compare('<form duplicate="1">', 1));
test('Duplicate button not displayed when create="0"',
compare('<form create="0">', 0));
test('Duplicate button not displayed when create="1" duplicate="0"',
compare('<form create="1" duplicate="0">', 0));
test('Duplicate button not displayed when duplicate="0"',
compare('<form duplicate="0">', 0));
});