summaryrefslogtreecommitdiffstats
path: root/dom/system/tests/ioutils/test_ioutils_set_permissions.html
blob: 36f7dab72aee16870d4d81fbb4942bd685e28961 (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
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<!DOCTYPE HTML>
<html>

<head>
  <meta charset="utf-8">
  <title>Test the IOUtils file I/O API</title>
  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
  <script src="file_ioutils_test_fixtures.js"></script>
  <script>
    "use strict";

    add_task(async function test_setPermissions() {
      const tempFile = PathUtils.join(PathUtils.tempDir, "setPermissions.tmp");

      await IOUtils.writeUTF8(tempFile, "");
      await IOUtils.setPermissions(tempFile, 0o421);

      let stat = await IOUtils.stat(tempFile);

      if (Services.appinfo.OS === "WINNT") {
        // setPermissions ignores the x bit on Windows.
        is(stat.permissions, 0o666, "Permissions munged on Windows");
      } else {
        let umask = Services.sysinfo.getProperty("umask");
        is(stat.permissions, 0o421 & ~umask, "Permissions match");
      }

      await IOUtils.setPermissions(tempFile, 0o400);
      stat = await IOUtils.stat(tempFile);

      if (Services.appinfo.OS === "WINNT") {
        is(stat.permissions, 0o444, "Permissions munged on Windows");

        // We need to make the file writable to delete it on Windows.
        await IOUtils.setPermissions(tempFile, 0o600);
      } else {
        is(stat.permissions, 0o400, "Permissions match");
      }

      await cleanup(tempFile);
    });

    add_task(async function test_setPermissionsWithoutHonoringUmask() {
      const tempFile = PathUtils.join(PathUtils.tempDir, "setPermissions.tmp");

      await IOUtils.writeUTF8(tempFile, "");
      await IOUtils.setPermissions(tempFile, 0o421, false);

      let stat = await IOUtils.stat(tempFile);

      if (Services.appinfo.OS === "WINNT") {
        // setPermissions ignores the x bit on Windows.
        is(stat.permissions, 0o666, "Permissions munged on Windows");
      } else {
        is(stat.permissions, 0o421, "Permissions match");
      }

      await IOUtils.setPermissions(tempFile, 0o400);
      stat = await IOUtils.stat(tempFile);

      if (Services.appinfo.OS === "WINNT") {
        is(stat.permissions, 0o444, "Permissions munged on Windows");

        // We need to make the file writable to delete it on Windows.
        await IOUtils.setPermissions(tempFile, 0o600);
      } else {
        is(stat.permissions, 0o400, "Permissions match");
      }

      await cleanup(tempFile);
    });
  </script>
</head>

<body>
  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test"></pre>
</body>

</html>