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
|
import { describe, expect, it } from "vitest";
import { isMobileAppRedirect, validateRedirectUrl } from "./redirectUrl";
describe("validateRedirectUrl", () => {
it("should return undefined for null input", () => {
expect(validateRedirectUrl(null)).toBe(undefined);
});
it("should return undefined for undefined input", () => {
expect(validateRedirectUrl(undefined)).toBe(undefined);
});
it("should return undefined for empty string", () => {
expect(validateRedirectUrl("")).toBe(undefined);
});
it("should allow relative paths starting with '/'", () => {
expect(validateRedirectUrl("/")).toBe("/");
expect(validateRedirectUrl("/dashboard")).toBe("/dashboard");
expect(validateRedirectUrl("/settings/profile")).toBe("/settings/profile");
expect(validateRedirectUrl("/path?query=value")).toBe("/path?query=value");
expect(validateRedirectUrl("/path#hash")).toBe("/path#hash");
});
it("should reject protocol-relative URLs (//)", () => {
expect(validateRedirectUrl("//evil.com")).toBe(undefined);
expect(validateRedirectUrl("//evil.com/path")).toBe(undefined);
});
it("should allow karakeep:// scheme for mobile app", () => {
expect(validateRedirectUrl("karakeep://")).toBe("karakeep://");
expect(validateRedirectUrl("karakeep://callback")).toBe(
"karakeep://callback",
);
expect(validateRedirectUrl("karakeep://callback/path")).toBe(
"karakeep://callback/path",
);
expect(validateRedirectUrl("karakeep://callback?param=value")).toBe(
"karakeep://callback?param=value",
);
});
it("should reject http:// scheme", () => {
expect(validateRedirectUrl("http://example.com")).toBe(undefined);
expect(validateRedirectUrl("http://localhost:3000")).toBe(undefined);
});
it("should reject https:// scheme", () => {
expect(validateRedirectUrl("https://example.com")).toBe(undefined);
expect(validateRedirectUrl("https://evil.com/phishing")).toBe(undefined);
});
it("should reject javascript: scheme", () => {
expect(validateRedirectUrl("javascript:alert(1)")).toBe(undefined);
});
it("should reject data: scheme", () => {
expect(
validateRedirectUrl("data:text/html,<script>alert(1)</script>"),
).toBe(undefined);
});
it("should reject other custom schemes", () => {
expect(validateRedirectUrl("file:///etc/passwd")).toBe(undefined);
expect(validateRedirectUrl("ftp://example.com")).toBe(undefined);
expect(validateRedirectUrl("mailto:test@example.com")).toBe(undefined);
});
it("should reject paths not starting with /", () => {
expect(validateRedirectUrl("dashboard")).toBe(undefined);
expect(validateRedirectUrl("path/to/page")).toBe(undefined);
});
});
describe("isMobileAppRedirect", () => {
it("should return true for karakeep:// URLs", () => {
expect(isMobileAppRedirect("karakeep://")).toBe(true);
expect(isMobileAppRedirect("karakeep://callback")).toBe(true);
expect(isMobileAppRedirect("karakeep://callback/path")).toBe(true);
});
it("should return false for other URLs", () => {
expect(isMobileAppRedirect("/")).toBe(false);
expect(isMobileAppRedirect("/dashboard")).toBe(false);
expect(isMobileAppRedirect("https://example.com")).toBe(false);
expect(isMobileAppRedirect("http://localhost")).toBe(false);
});
});
|