Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / unit / TestFile.jsm
blob4e9162d4958abbb1121f30f67cd5d4467744f283
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 var EXPORTED_SYMBOLS = ["TestFile"];
7 const Assert = {
8   ok(cond, text) {
9     // we don't have the test harness' utilities in this scope, so we need this
10     // little helper. In the failure case, the exception is propagated to the
11     // caller in the main run_test() function, and the test fails.
12     if (!cond)
13       throw "Failed check: " + text;
14   }
17 var TestFile = {
18   doTest: function(cb) {
19     // throw if anything goes wrong
21     // find the current directory path
22     var file = Cc["@mozilla.org/file/directory_service;1"]
23                .getService(Ci.nsIProperties)
24                .get("CurWorkD", Ci.nsIFile);
25     file.append("xpcshell.toml");
27     // should be able to construct a file
28     var f1, f2;
29     Promise.all([
30       File.createFromFileName(file.path).then(f => { f1 = f; }),
31       File.createFromNsIFile(file).then(f => { f2 = f; }),
32     ])
33     .then(() => {
34       // do some tests
35       Assert.ok(f1 instanceof File, "Should be a DOM File");
36       Assert.ok(f2 instanceof File, "Should be a DOM File");
38       Assert.ok(f1.name == "xpcshell.toml", "Should be the right file");
39       Assert.ok(f2.name == "xpcshell.toml", "Should be the right file");
41       Assert.ok(f1.type == "", "Should be the right type");
42       Assert.ok(f2.type == "", "Should be the right type");
43     })
44     .then(() => {
45       var threw = false;
46       try {
47         // Needs a ctor argument
48         var f7 = new File();
49       } catch (e) {
50         threw = true;
51       }
52       Assert.ok(threw, "No ctor arguments should throw");
54       var threw = false;
55       try {
56         // Needs a valid ctor argument
57         var f7 = new File(Date(132131532));
58       } catch (e) {
59         threw = true;
60       }
61       Assert.ok(threw, "Passing a random object should fail");
63       // Directories fail
64       var dir = Cc["@mozilla.org/file/directory_service;1"]
65                   .getService(Ci.nsIProperties)
66                   .get("CurWorkD", Ci.nsIFile);
67       return File.createFromNsIFile(dir)
68     })
69     .then(() => {
70       Assert.ok(false, "Can't create a File object for a directory");
71     }, () => {
72       Assert.ok(true, "Can't create a File object for a directory");
73     })
74     .then(() => {
75       cb(true);
76     });
77   },