summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/page/pane_contract_expand.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/spec/page/pane_contract_expand.spec.js')
-rw-r--r--web-ui/test/spec/page/pane_contract_expand.spec.js67
1 files changed, 67 insertions, 0 deletions
diff --git a/web-ui/test/spec/page/pane_contract_expand.spec.js b/web-ui/test/spec/page/pane_contract_expand.spec.js
new file mode 100644
index 00000000..803f688c
--- /dev/null
+++ b/web-ui/test/spec/page/pane_contract_expand.spec.js
@@ -0,0 +1,67 @@
+/*global Smail */
+/*global afterEach */
+
+'use strict';
+
+describeComponent('page/pane_contract_expand', function () {
+
+ var fixture;
+
+ beforeEach(function () {
+ fixture = $('<div>')
+ .append($('<div>', { id: 'middle-pane-container' }))
+ .append($('<div>', { id: 'right-pane' }));
+
+ $('body').append(fixture);
+
+
+ });
+
+ afterEach(function () {
+ fixture.remove();
+ });
+
+ describe('after initialization', function () {
+ beforeEach(function () {
+ setupComponent(document);
+ });
+
+ it('contracts middle pane and expands right pane on mail open', function () {
+ $(document).trigger(Smail.events.ui.mail.open);
+
+ expect($('#middle-pane-container').attr('class')).toEqual(this.component.attr.MIDDLE_PANE_CONTRACT_CLASSES);
+ expect($('#right-pane').attr('class')).toEqual(this.component.attr.RIGHT_PANE_EXPAND_CLASSES);
+ });
+
+ it('contracts middle pane and expands right pane on open compose box', function () {
+ $(document).trigger(Smail.events.dispatchers.rightPane.openComposeBox);
+
+ expect($('#middle-pane-container').attr('class')).toEqual(this.component.attr.MIDDLE_PANE_CONTRACT_CLASSES);
+ expect($('#right-pane').attr('class')).toEqual(this.component.attr.RIGHT_PANE_EXPAND_CLASSES);
+ });
+
+ it('contracts middle pane and expands right pane on open draft', function () {
+ $(document).trigger(Smail.events.dispatchers.rightPane.openDraft);
+
+ expect($('#middle-pane-container').attr('class')).toEqual(this.component.attr.MIDDLE_PANE_CONTRACT_CLASSES);
+ expect($('#right-pane').attr('class')).toEqual(this.component.attr.RIGHT_PANE_EXPAND_CLASSES);
+ });
+
+ it('expands middle pane and contracts right pane on event on open no message selected pane', function () {
+ $(document).trigger(Smail.events.dispatchers.rightPane.openNoMessageSelected);
+
+ expect($('#middle-pane-container').attr('class')).toEqual(this.component.attr.MIDDLE_PANE_EXPAND_CLASSES);
+ expect($('#right-pane').attr('class')).toEqual(this.component.attr.RIGHT_PANE_CONTRACT_CLASSES);
+ });
+ });
+
+ describe('on initialization', function () {
+ it('expands middle pane and contracts right pane', function () {
+ setupComponent(document);
+
+ expect($('#middle-pane-container').attr('class')).toEqual(this.component.attr.MIDDLE_PANE_EXPAND_CLASSES);
+ expect($('#right-pane').attr('class')).toEqual(this.component.attr.RIGHT_PANE_CONTRACT_CLASSES);
+ });
+ });
+
+});