aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/instance/common/path_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-07-02 20:42:51 +0900
committerOphestra <cat@gensokyo.uk>2025-07-02 20:42:51 +0900
commiteb22a8bcc1ac03357d4073e5d3ed6d0ab5246a37 (patch)
treed27d1f724a18bb47bf48816a444dccac28b5248c /internal/app/instance/common/path_test.go
parent31aef905fa819310ee7694775a836c294ff742e4 (diff)
cmd/hakurei: move to cmd
Having it at the project root never made sense since the "ego" name was deprecated. This change finally addresses it. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/instance/common/path_test.go')
-rw-r--r--internal/app/instance/common/path_test.go85
1 files changed, 0 insertions, 85 deletions
diff --git a/internal/app/instance/common/path_test.go b/internal/app/instance/common/path_test.go
deleted file mode 100644
index b14f24df..00000000
--- a/internal/app/instance/common/path_test.go
+++ /dev/null
@@ -1,85 +0,0 @@
-package common
-
-import (
- "testing"
-)
-
-func TestDeepContainsH(t *testing.T) {
- testCases := []struct {
- name string
- basepath string
- targpath string
- want bool
- wantErr bool
- }{
- {
- name: "empty",
- want: true,
- },
- {
- name: "equal abs",
- basepath: "/run",
- targpath: "/run",
- want: true,
- },
- {
- name: "equal rel",
- basepath: "./run",
- targpath: "run",
- want: true,
- },
- {
- name: "contains abs",
- basepath: "/run",
- targpath: "/run/dbus",
- want: true,
- },
- {
- name: "inverse contains abs",
- basepath: "/run/dbus",
- targpath: "/run",
- want: false,
- },
- {
- name: "contains rel",
- basepath: "../run",
- targpath: "../run/dbus",
- want: true,
- },
- {
- name: "inverse contains rel",
- basepath: "../run/dbus",
- targpath: "../run",
- want: false,
- },
- {
- name: "weird abs",
- basepath: "/run/dbus",
- targpath: "/run/dbus/../current-system",
- want: false,
- },
- {
- name: "weird rel",
- basepath: "../run/dbus",
- targpath: "../run/dbus/../current-system",
- want: false,
- },
-
- {
- name: "invalid mix",
- basepath: "/run",
- targpath: "./run",
- wantErr: true,
- },
- }
-
- for _, tc := range testCases {
- t.Run(tc.name, func(t *testing.T) {
- if got, err := deepContainsH(tc.basepath, tc.targpath); (err != nil) != tc.wantErr {
- t.Errorf("deepContainsH() error = %v, wantErr %v", err, tc.wantErr)
- } else if got != tc.want {
- t.Errorf("deepContainsH() = %v, want %v", got, tc.want)
- }
- })
- }
-}