summaryrefslogtreecommitdiff
path: root/plugins/server/command_test.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-09-16 17:12:37 +0300
committerValery Piashchynski <[email protected]>2021-09-16 17:12:37 +0300
commitf3491c089b4da77fd8d2bc942a88b6b8d117a8a5 (patch)
tree32bfffb1f24eeee7b909747cc00a6a6b9fd3ee83 /plugins/server/command_test.go
parent5d2cd55ab522d4f1e65a833f91146444465a32ac (diff)
Move plugins to a separate repository
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/server/command_test.go')
-rw-r--r--plugins/server/command_test.go43
1 files changed, 0 insertions, 43 deletions
diff --git a/plugins/server/command_test.go b/plugins/server/command_test.go
deleted file mode 100644
index 74762ccd..00000000
--- a/plugins/server/command_test.go
+++ /dev/null
@@ -1,43 +0,0 @@
-package server
-
-import (
- "strings"
- "testing"
-
- "github.com/spiral/errors"
- "github.com/stretchr/testify/assert"
-)
-
-func TestServerCommandChecker(t *testing.T) {
- s := &Plugin{}
- cmd1 := "php ../../tests/client.php"
- assert.NoError(t, s.scanCommand(strings.Split(cmd1, " ")))
-
- cmd2 := "C:/../../abcdef/client.php"
- assert.Error(t, s.scanCommand(strings.Split(cmd2, " ")))
-
- cmd3 := "sh ./script.sh"
- err := s.scanCommand(strings.Split(cmd3, " "))
- assert.Error(t, err)
- if !errors.Is(errors.FileNotFound, err) {
- t.Fatal("should be of filenotfound type")
- }
-
- cmd4 := "php ../../tests/client.php --option1 --option2"
- err = s.scanCommand(strings.Split(cmd4, " "))
- assert.NoError(t, err)
-
- cmd5 := "php ../../tests/cluent.php --option1 --option2"
- err = s.scanCommand(strings.Split(cmd5, " "))
- assert.Error(t, err)
- if !errors.Is(errors.FileNotFound, err) {
- t.Fatal("should be of filenotfound type")
- }
-
- cmd6 := "php 0/../../tests/cluent.php --option1 --option2"
- err = s.scanCommand(strings.Split(cmd6, " "))
- assert.Error(t, err)
- if errors.Is(errors.FileNotFound, err) {
- t.Fatal("should be of filenotfound type")
- }
-}