oh-my-posh/src/segment_php_test.go
2021-10-27 12:57:15 +02:00

33 lines
874 B
Go

package main
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
func TestPhp(t *testing.T) {
cases := []struct {
Case string
ExpectedString string
Version string
}{
{Case: "PHP 6.1.0", ExpectedString: "6.1.0", Version: "PHP 6.1.0(cli) (built: Jul 2 2021 03:59:48) ( NTS )"},
{Case: "php 7.4.21", ExpectedString: "7.4.21", Version: "PHP 7.4.21 (cli) (built: Jul 2 2021 03:59:48) ( NTS )"},
}
for _, tc := range cases {
params := &mockedLanguageParams{
cmd: "php",
versionParam: "--version",
versionOutput: tc.Version,
extension: "*.php",
}
env, props := getMockedLanguageEnv(params)
j := &php{}
j.init(props, env)
assert.True(t, j.enabled(), fmt.Sprintf("Failed in case: %s", tc.Case))
assert.Equal(t, tc.ExpectedString, j.string(), fmt.Sprintf("Failed in case: %s", tc.Case))
}
}