mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package client
|
|
|
|
import (
|
|
"github.com/stretchr/testify/require"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestNew(t *testing.T) {
|
|
|
|
t.Run("with all options", func(t *testing.T) {
|
|
expectedOptions := &options{
|
|
url: "https://foo.bar.com",
|
|
client: &http.Client{},
|
|
credentials: "my_awesome_credentials",
|
|
}
|
|
gitpod, err := New(
|
|
WithURL(expectedOptions.url),
|
|
WithCredentials(expectedOptions.credentials),
|
|
WithHTTPClient(expectedOptions.client),
|
|
)
|
|
require.NoError(t, err)
|
|
require.Equal(t, expectedOptions, gitpod.cfg)
|
|
|
|
require.NotNil(t, gitpod.PersonalAccessTokens)
|
|
require.NotNil(t, gitpod.Workspaces)
|
|
require.NotNil(t, gitpod.Projects)
|
|
require.NotNil(t, gitpod.PersonalAccessTokens)
|
|
})
|
|
|
|
t.Run("fails when no credentials specified", func(t *testing.T) {
|
|
_, err := New()
|
|
require.Error(t, err)
|
|
})
|
|
|
|
t.Run("defaults to https://api.gitpod.io", func(t *testing.T) {
|
|
gitpod, err := New(WithCredentials("foo"))
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, "https://api.gitpod.io", gitpod.cfg.url)
|
|
})
|
|
|
|
}
|