mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
feat: cloud foundry segment
This commit is contained in:
parent
2434acd828
commit
b10b8dc2f0
57
docs/docs/segment-cf.md
Normal file
57
docs/docs/segment-cf.md
Normal file
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
id: cf
|
||||
title: Cloud Foundry
|
||||
sidebar_label: Cloud Foundry
|
||||
---
|
||||
|
||||
## What
|
||||
|
||||
Display the active [Cloud Foundry CLI][cloud-foundry] version.
|
||||
|
||||
## Sample Configuration
|
||||
|
||||
```json
|
||||
{
|
||||
"background": "#a7cae1",
|
||||
"foreground": "#100e23",
|
||||
"powerline_symbol": "\ue0b0",
|
||||
"properties": {
|
||||
"template": " \uf40a cf {{ .Full }} "
|
||||
},
|
||||
"style": "powerline",
|
||||
"type": "cf"
|
||||
}
|
||||
```
|
||||
|
||||
## Properties
|
||||
|
||||
- home_enabled: `boolean` - display the segment in the HOME folder or not - defaults to `false`
|
||||
- fetch_version: `boolean` - display the UI5 tooling version - defaults to `true`
|
||||
- display_error: `boolean` - show the error context when failing to retrieve the version information - defaults to `true`
|
||||
- missing_command_text: `string` - text to display when the java command is missing - defaults to empty
|
||||
- display_mode: `string` - determines when the segment is displayed
|
||||
- `always`: the segment is always displayed
|
||||
- `files`: the segment is displayed when `manifest.yml` or `mta.yaml` file is present (default)
|
||||
|
||||
## Template ([info][templates])
|
||||
|
||||
:::note default template
|
||||
|
||||
```template
|
||||
{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}
|
||||
```
|
||||
|
||||
:::
|
||||
|
||||
## Template Properties
|
||||
|
||||
- `.Full`: `string` - the full version
|
||||
- `.Major`: `string` - major number
|
||||
- `.Minor`: `string` - minor number
|
||||
- `.Patch`: `string` - patch number
|
||||
- `.Prerelease`: `string` - prerelease info text
|
||||
- `.BuildMetadata`: `string` - build metadata
|
||||
- `.Error`: `string` - when fetching the version string errors
|
||||
|
||||
[templates]: /docs/config-templates
|
||||
[cloud-foundry]: https://github.com/cloudfoundry/cli
|
|
@ -28,7 +28,7 @@ module.exports = {
|
|||
"config-templates",
|
||||
"config-transient",
|
||||
"config-tooltips",
|
||||
"config-fonts"
|
||||
"config-fonts",
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -44,6 +44,7 @@ module.exports = {
|
|||
"brewfather",
|
||||
"command",
|
||||
"crystal",
|
||||
"cf",
|
||||
"dart",
|
||||
"dotnet",
|
||||
"executiontime",
|
||||
|
|
|
@ -151,6 +151,8 @@ const (
|
|||
HASKELL SegmentType = "haskell"
|
||||
// UI5 Tooling segment
|
||||
UI5TOOLING SegmentType = "ui5tooling"
|
||||
// Cloud Foundry segment
|
||||
CF SegmentType = "cf"
|
||||
)
|
||||
|
||||
func (segment *Segment) shouldIncludeFolder() bool {
|
||||
|
@ -269,6 +271,7 @@ func (segment *Segment) mapSegmentWithWriter(env environment.Environment) error
|
|||
IPIFY: &segments.IPify{},
|
||||
HASKELL: &segments.Haskell{},
|
||||
UI5TOOLING: &segments.UI5Tooling{},
|
||||
CF: &segments.Cf{},
|
||||
}
|
||||
if segment.Properties == nil {
|
||||
segment.Properties = make(properties.Map)
|
||||
|
|
35
src/segments/cf.go
Normal file
35
src/segments/cf.go
Normal file
|
@ -0,0 +1,35 @@
|
|||
package segments
|
||||
|
||||
import (
|
||||
"oh-my-posh/environment"
|
||||
"oh-my-posh/properties"
|
||||
)
|
||||
|
||||
type Cf struct {
|
||||
language
|
||||
}
|
||||
|
||||
func (c *Cf) Template() string {
|
||||
return languageTemplate
|
||||
}
|
||||
|
||||
func (c *Cf) Init(props properties.Properties, env environment.Environment) {
|
||||
c.language = language{
|
||||
env: env,
|
||||
props: props,
|
||||
extensions: []string{"manifest.yml", "mta.yaml"},
|
||||
commands: []*cmd{
|
||||
{
|
||||
executable: "cf",
|
||||
args: []string{"version"},
|
||||
regex: `(?:(?P<version>((?P<major>[0-9]+).(?P<minor>[0-9]+).(?P<patch>[0-9]+))))`,
|
||||
},
|
||||
},
|
||||
displayMode: props.GetString(DisplayMode, DisplayModeFiles),
|
||||
versionURLTemplate: "https://github.com/cloudfoundry/cli/releases/tag/v{{ .Full }}",
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Cf) Enabled() bool {
|
||||
return c.language.Enabled()
|
||||
}
|
100
src/segments/cf_test.go
Normal file
100
src/segments/cf_test.go
Normal file
|
@ -0,0 +1,100 @@
|
|||
package segments
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"oh-my-posh/environment"
|
||||
"oh-my-posh/mock"
|
||||
"oh-my-posh/properties"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestCFSegment(t *testing.T) {
|
||||
cases := []struct {
|
||||
Case string
|
||||
Template string
|
||||
ExpectedString string
|
||||
ExpectedEnabled bool
|
||||
CfYamlFile string
|
||||
Version string
|
||||
DisplayMode string
|
||||
}{
|
||||
{
|
||||
Case: "1) cf 2.12.1 - file manifest.yml",
|
||||
ExpectedString: "2.12.1",
|
||||
ExpectedEnabled: true,
|
||||
CfYamlFile: "manifest.yml",
|
||||
Version: `cf.exe version 2.12.1+645c3ce6a.2021-08-16`,
|
||||
DisplayMode: DisplayModeFiles,
|
||||
},
|
||||
{
|
||||
Case: "2) cf 11.0.0-rc1 - file mta.yaml",
|
||||
Template: "{{ .Major }}",
|
||||
ExpectedString: "11",
|
||||
ExpectedEnabled: true,
|
||||
CfYamlFile: "mta.yaml",
|
||||
Version: `cf version 11.0.0-rc1`,
|
||||
DisplayMode: DisplayModeFiles,
|
||||
},
|
||||
{
|
||||
Case: "3) cf 11.0.0-rc1 - no file",
|
||||
Template: "{{ .Major }}",
|
||||
ExpectedString: "",
|
||||
ExpectedEnabled: false,
|
||||
Version: `cf version 11.0.0-rc1`,
|
||||
DisplayMode: DisplayModeFiles,
|
||||
},
|
||||
{
|
||||
Case: "4) cf 11.1.0-rc1 - mode always",
|
||||
Template: "{{ .Major }}.{{ .Minor }}",
|
||||
ExpectedString: "11.1",
|
||||
ExpectedEnabled: true,
|
||||
Version: `cf.exe version 11.1.0-rc1`,
|
||||
DisplayMode: DisplayModeAlways,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tc := range cases {
|
||||
var env = new(mock.MockedEnvironment)
|
||||
env.On("HasCommand", "cf").Return(true)
|
||||
env.On("RunCommand", "cf", []string{"version"}).Return(tc.Version, nil)
|
||||
env.On("Pwd").Return("/usr/home/dev/my-app")
|
||||
env.On("Home").Return("/usr/home")
|
||||
|
||||
env.On("TemplateCache").Return(&environment.TemplateCache{
|
||||
Env: make(map[string]string),
|
||||
})
|
||||
|
||||
cf := &Cf{}
|
||||
|
||||
props := properties.Map{
|
||||
DisplayMode: tc.DisplayMode,
|
||||
}
|
||||
|
||||
if tc.Template == "" {
|
||||
tc.Template = cf.Template()
|
||||
}
|
||||
|
||||
cf.Init(props, env)
|
||||
|
||||
for _, f := range cf.language.extensions {
|
||||
match, err := filepath.Match(f, tc.CfYamlFile)
|
||||
|
||||
if err != nil {
|
||||
t.Fail()
|
||||
}
|
||||
|
||||
if match {
|
||||
env.On("HasFiles", f).Return(true)
|
||||
} else {
|
||||
env.On("HasFiles", f).Return(false)
|
||||
}
|
||||
}
|
||||
|
||||
failMsg := fmt.Sprintf("Failed in case: %s", tc.Case)
|
||||
assert.Equal(t, tc.ExpectedEnabled, cf.Enabled(), failMsg)
|
||||
assert.Equal(t, tc.ExpectedString, renderTemplate(env, tc.Template, cf), failMsg)
|
||||
}
|
||||
}
|
|
@ -1934,6 +1934,32 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": {
|
||||
"properties": {
|
||||
"type": { "const": "cf" }
|
||||
}
|
||||
},
|
||||
"then": {
|
||||
"title": "Clound Foundry CLI segment",
|
||||
"description": "https://ohmyposh.dev/docs/cf",
|
||||
"properties": {
|
||||
"properties": {
|
||||
"properties": {
|
||||
"fetch_version": {
|
||||
"$ref": "#/definitions/fetch_version"
|
||||
},
|
||||
"display_mode": {
|
||||
"$ref": "#/definitions/display_mode"
|
||||
},
|
||||
"missing_command_text": {
|
||||
"$ref": "#/definitions/missing_command_text"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue