Unnamed repository; edit this file 'description' to name the repository.
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import * as assert from "assert";
import { _private } from "../../src/bootstrap";
import type { Context } from ".";

export async function getTests(ctx: Context) {
    await ctx.suite("Bootstrap/Select toolchain RA", (suite) => {
        suite.addTest("Order of nightly RA", async () => {
            assert.deepStrictEqual(
                await _private.orderFromPath(
                    "/Users/myuser/.rustup/toolchains/nightly-2022-11-22-aarch64-apple-darwin/bin/rust-analyzer",
                    async function (path: string) {
                        assert.deepStrictEqual(
                            path,
                            "/Users/myuser/.rustup/toolchains/nightly-2022-11-22-aarch64-apple-darwin/bin/rust-analyzer",
                        );
                        return "rust-analyzer 1.67.0-nightly (b7bc90fe 2022-11-21)";
                    },
                ),
                "0-2022-11-21/0",
            );
        });

        suite.addTest("Order of versioned RA", async () => {
            assert.deepStrictEqual(
                await _private.orderFromPath(
                    "/Users/myuser/.rustup/toolchains/1.72.1-aarch64-apple-darwin/bin/rust-analyzer",
                    async function (path: string) {
                        assert.deepStrictEqual(
                            path,
                            "/Users/myuser/.rustup/toolchains/1.72.1-aarch64-apple-darwin/bin/rust-analyzer",
                        );
                        return "rust-analyzer 1.72.1 (d5c2e9c3 2023-09-13)";
                    },
                ),
                "0-2023-09-13/1",
            );
        });

        suite.addTest("Order of versioned RA when unable to obtain version date", async () => {
            assert.deepStrictEqual(
                await _private.orderFromPath(
                    "/Users/myuser/.rustup/toolchains/1.72.1-aarch64-apple-darwin/bin/rust-analyzer",
                    async function () {
                        return "rust-analyzer 1.72.1";
                    },
                ),
                "2",
            );
        });

        suite.addTest("Order of stable RA", async () => {
            assert.deepStrictEqual(
                await _private.orderFromPath(
                    "/Users/myuser/.rustup/toolchains/stable-aarch64-apple-darwin/bin/rust-analyzer",
                    async function (path: string) {
                        assert.deepStrictEqual(
                            path,
                            "/Users/myuser/.rustup/toolchains/stable-aarch64-apple-darwin/bin/rust-analyzer",
                        );
                        return "rust-analyzer 1.79.0 (129f3b99 2024-06-10)";
                    },
                ),
                "0-2024-06-10/1",
            );
        });

        suite.addTest("Order with invalid path to RA", async () => {
            assert.deepStrictEqual(
                await _private.orderFromPath("some-weird-path", async function () {
                    return undefined;
                }),
                "2",
            );
        });

        suite.addTest("Earliest RA between nightly and stable", async () => {
            assert.deepStrictEqual(
                await _private.earliestToolchainPath(
                    "/Users/myuser/.rustup/toolchains/stable-aarch64-apple-darwin/bin/rust-analyzer",
                    "/Users/myuser/.rustup/toolchains/nightly-2022-11-22-aarch64-apple-darwin/bin/rust-analyzer",
                    async function (path: string) {
                        if (
                            path ===
                            "/Users/myuser/.rustup/toolchains/nightly-2022-11-22-aarch64-apple-darwin/bin/rust-analyzer"
                        ) {
                            return "rust-analyzer 1.67.0-nightly (b7bc90fe 2022-11-21)";
                        } else {
                            return "rust-analyzer 1.79.0 (129f3b99 2024-06-10)";
                        }
                    },
                ),
                "/Users/myuser/.rustup/toolchains/nightly-2022-11-22-aarch64-apple-darwin/bin/rust-analyzer",
            );
        });
    });

    await ctx.suite("Bootstrap/Detect RA component in toolchain file", (suite) => {
        suite.addTest("Single line components array", async () => {
            assert.ok(
                _private.declaresRaComponent(
                    `[toolchain]
channel = "1.88"
components = ["cargo", "rust-analyzer", "rustfmt"]
`,
                ),
            );
        });

        suite.addTest("Multi line components array", async () => {
            assert.ok(
                _private.declaresRaComponent(
                    `[toolchain]
channel = "1.88"
components = [
    "cargo",
    "rust-analyzer",
    "rustfmt",
]
profile = "default"
`,
                ),
            );
        });

        suite.addTest("Components array with literal strings", async () => {
            assert.ok(_private.declaresRaComponent(`components = ['cargo', 'rust-analyzer']`));
        });

        suite.addTest("Components array without RA", async () => {
            assert.ok(
                !_private.declaresRaComponent(
                    `[toolchain]
channel = "1.88"
components = [
    "cargo",
    "rustfmt",
]
`,
                ),
            );
        });

        suite.addTest("No components array", async () => {
            assert.ok(
                !_private.declaresRaComponent(
                    `[toolchain]
channel = "1.88"
`,
                ),
            );
        });

        suite.addTest("RA mentioned outside the components array", async () => {
            assert.ok(
                !_private.declaresRaComponent(
                    `[toolchain]
channel = "1.88"
components = [
    "cargo",
]
# add "rust-analyzer" here to use the matching server
`,
                ),
            );
        });
    });
}