e7f7bb8b31
* Render union types in generated docs Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: ea8faa5c-7f26-4e2d-bf9c-6f0b5f173e8c * Support clearing issue types with issue_write Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: ea8faa5c-7f26-4e2d-bf9c-6f0b5f173e8c * Support clearing issue types with granular tool Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: ea8faa5c-7f26-4e2d-bf9c-6f0b5f173e8c * Validate duplicate closures before updates Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: ea8faa5c-7f26-4e2d-bf9c-6f0b5f173e8c --------- Copilot-Session: ea8faa5c-7f26-4e2d-bf9c-6f0b5f173e8c
66 lines
2.0 KiB
Go
66 lines
2.0 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/google/jsonschema-go/jsonschema"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestLoadAppPrivateKey(t *testing.T) {
|
|
t.Run("file", func(t *testing.T) {
|
|
path := filepath.Join(t.TempDir(), "app.pem")
|
|
require.NoError(t, os.WriteFile(path, []byte("from-file"), 0o600))
|
|
|
|
key, err := loadAppPrivateKey(path, "from-inline")
|
|
require.NoError(t, err)
|
|
assert.Equal(t, []byte("from-file"), key)
|
|
})
|
|
|
|
t.Run("inline", func(t *testing.T) {
|
|
key, err := loadAppPrivateKey("", `first\nsecond`)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, []byte("first\nsecond"), key)
|
|
})
|
|
|
|
t.Run("missing", func(t *testing.T) {
|
|
_, err := loadAppPrivateKey("", "")
|
|
require.Error(t, err)
|
|
assert.Contains(t, err.Error(), "private key")
|
|
})
|
|
}
|
|
|
|
func TestGitHubAppFlagsAreStdioOnly(t *testing.T) {
|
|
assert.NotNil(t, stdioCmd.Flags().Lookup("app-id"))
|
|
assert.Nil(t, httpCmd.Flags().Lookup("app-id"))
|
|
}
|
|
|
|
func TestSchemaTypeString(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
schema *jsonschema.Schema
|
|
want string
|
|
}{
|
|
{name: "type", schema: &jsonschema.Schema{Type: "string"}, want: "string"},
|
|
{name: "types", schema: &jsonschema.Schema{Types: []string{"string", "number"}}, want: "string | number"},
|
|
{name: "unconstrained", schema: &jsonschema.Schema{}, want: "any"},
|
|
{name: "anyOf", schema: &jsonschema.Schema{AnyOf: []*jsonschema.Schema{{Type: "string"}, {Type: "null"}}}, want: "string | null"},
|
|
{name: "oneOf", schema: &jsonschema.Schema{OneOf: []*jsonschema.Schema{{Type: "number"}, {Type: "string"}}}, want: "number | string"},
|
|
{
|
|
name: "array",
|
|
schema: &jsonschema.Schema{Type: "array", Items: &jsonschema.Schema{Type: "string"}},
|
|
want: "string[]",
|
|
},
|
|
{name: "untyped array", schema: &jsonschema.Schema{Type: "array"}, want: "array"},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
assert.Equal(t, tc.want, schemaTypeString(tc.schema))
|
|
})
|
|
}
|
|
}
|