summaryrefslogtreecommitdiff
path: root/browser/devtools/sourceeditor/test/browser_bug700893_dirty_state.js
blob: 3b95526595e6f56f8e6005b4b354a0968d398530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

function test() {

  let temp = {};
  Cu.import("resource:///modules/source-editor.jsm", temp);
  let SourceEditor = temp.SourceEditor;

  let component = Services.prefs.getCharPref(SourceEditor.PREFS.COMPONENT);
  if (component == "textarea") {
    ok(true, "skip test for bug 700893: only applicable for non-textarea components");
    return;
  }

  waitForExplicitFinish();

  let editor;

  const windowUrl = "data:text/xml,<?xml version='1.0'?>" +
    "<window xmlns='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul'" +
    " title='test for bug 700893' width='600' height='500'><hbox flex='1'/></window>";
  const windowFeatures = "chrome,titlebar,toolbar,centerscreen,resizable,dialog=no";

  let testWin = Services.ww.openWindow(null, windowUrl, "_blank", windowFeatures, null);
  testWin.addEventListener("load", function onWindowLoad() {
    testWin.removeEventListener("load", onWindowLoad, false);
    waitForFocus(initEditor, testWin);
  }, false);

  function initEditor()
  {
    let hbox = testWin.document.querySelector("hbox");
    editor = new SourceEditor();
    editor.init(hbox, {initialText: "foobar"}, editorLoaded);
  }

  function editorLoaded()
  {
    editor.focus();

    is(editor.dirty, false, "editory is not dirty");

    let event = null;
    let eventHandler = function(aEvent) {
      event = aEvent;
    };
    editor.addEventListener(SourceEditor.EVENTS.DIRTY_CHANGED, eventHandler);

    editor.setText("omg");

    is(editor.dirty, true, "editor is dirty");
    ok(event, "DirtyChanged event fired")
    is(event.oldValue, false, "event.oldValue is correct");
    is(event.newValue, true, "event.newValue is correct");

    event = null;
    editor.setText("foo 2");
    ok(!event, "no DirtyChanged event fired");

    editor.dirty = false;

    is(editor.dirty, false, "editor marked as clean");
    ok(event, "DirtyChanged event fired")
    is(event.oldValue, true, "event.oldValue is correct");
    is(event.newValue, false, "event.newValue is correct");

    event = null;
    editor.setText("foo 3");

    is(editor.dirty, true, "editor is dirty after changes");
    ok(event, "DirtyChanged event fired")
    is(event.oldValue, false, "event.oldValue is correct");
    is(event.newValue, true, "event.newValue is correct");

    editor.undo();
    is(editor.dirty, false, "editor is not dirty after undo");
    ok(event, "DirtyChanged event fired")
    is(event.oldValue, true, "event.oldValue is correct");
    is(event.newValue, false, "event.newValue is correct");

    editor.removeEventListener(SourceEditor.EVENTS.DIRTY_CHANGED, eventHandler);

    editor.destroy();

    testWin.close();
    testWin = editor = null;

    waitForFocus(finish, window);
  }
}