-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create MarkdownService, EmojisService, CodesOfConductService and Meta…
- Loading branch information
1 parent
74db58f
commit f8c16b8
Showing
13 changed files
with
746 additions
and
613 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// Copyright 2023 The go-github AUTHORS. All rights reserved. | ||
// | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package github | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
) | ||
|
||
// CodesOfConductService provides access to code-of-conduct-related functions in the GitHub API. | ||
type CodesOfConductService service | ||
|
||
// CodeOfConduct represents a code of conduct. | ||
type CodeOfConduct struct { | ||
Name *string `json:"name,omitempty"` | ||
Key *string `json:"key,omitempty"` | ||
URL *string `json:"url,omitempty"` | ||
Body *string `json:"body,omitempty"` | ||
} | ||
|
||
func (c *CodeOfConduct) String() string { | ||
return Stringify(c) | ||
} | ||
|
||
// List returns all codes of conduct. | ||
// | ||
// GitHub API docs: https://docs.github.com/rest/codes-of-conduct/codes-of-conduct#get-all-codes-of-conduct | ||
func (s *CodesOfConductService) List(ctx context.Context) ([]*CodeOfConduct, *Response, error) { | ||
req, err := s.client.NewRequest("GET", "codes_of_conduct", nil) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
// TODO: remove custom Accept header when this API fully launches. | ||
req.Header.Set("Accept", mediaTypeCodesOfConductPreview) | ||
|
||
var cs []*CodeOfConduct | ||
resp, err := s.client.Do(ctx, req, &cs) | ||
if err != nil { | ||
return nil, resp, err | ||
} | ||
|
||
return cs, resp, nil | ||
} | ||
|
||
// ListCodesOfConduct | ||
// Deprecated: Use CodesOfConductService.List instead | ||
func (c *Client) ListCodesOfConduct(ctx context.Context) ([]*CodeOfConduct, *Response, error) { | ||
return c.CodesOfConduct.List(ctx) | ||
} | ||
|
||
// Get returns an individual code of conduct. | ||
// | ||
// GitHub API docs: https://docs.github.com/rest/codes-of-conduct/codes-of-conduct#get-a-code-of-conduct | ||
func (s *CodesOfConductService) Get(ctx context.Context, key string) (*CodeOfConduct, *Response, error) { | ||
u := fmt.Sprintf("codes_of_conduct/%s", key) | ||
req, err := s.client.NewRequest("GET", u, nil) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
// TODO: remove custom Accept header when this API fully launches. | ||
req.Header.Set("Accept", mediaTypeCodesOfConductPreview) | ||
|
||
coc := new(CodeOfConduct) | ||
resp, err := s.client.Do(ctx, req, coc) | ||
if err != nil { | ||
return nil, resp, err | ||
} | ||
|
||
return coc, resp, nil | ||
} | ||
|
||
// GetCodeOfConduct | ||
// Deprecated: Use CodesOfConductService.Get instead | ||
func (c *Client) GetCodeOfConduct(ctx context.Context, key string) (*CodeOfConduct, *Response, error) { | ||
return c.CodesOfConduct.Get(ctx, key) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
// Copyright 2023 The go-github AUTHORS. All rights reserved. | ||
// | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package github | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"net/http" | ||
"testing" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
) | ||
|
||
func TestCodesOfConductService_List(t *testing.T) { | ||
client, mux, _, teardown := setup() | ||
defer teardown() | ||
|
||
mux.HandleFunc("/codes_of_conduct", func(w http.ResponseWriter, r *http.Request) { | ||
testMethod(t, r, "GET") | ||
testHeader(t, r, "Accept", mediaTypeCodesOfConductPreview) | ||
fmt.Fprint(w, `[{ | ||
"key": "key", | ||
"name": "name", | ||
"url": "url"} | ||
]`) | ||
}) | ||
|
||
ctx := context.Background() | ||
cs, _, err := client.ListCodesOfConduct(ctx) | ||
assertNilError(t, err) | ||
|
||
want := []*CodeOfConduct{ | ||
{ | ||
Key: String("key"), | ||
Name: String("name"), | ||
URL: String("url"), | ||
}} | ||
if !cmp.Equal(want, cs) { | ||
t.Errorf("returned %+v, want %+v", cs, want) | ||
} | ||
|
||
const methodName = "List" | ||
testNewRequestAndDoFailure(t, methodName, client, func() (*Response, error) { | ||
got, resp, err := client.CodesOfConduct.List(ctx) | ||
if got != nil { | ||
t.Errorf("testNewRequestAndDoFailure %v = %#v, want nil", methodName, got) | ||
} | ||
return resp, err | ||
}) | ||
} | ||
|
||
func TestCodesOfConductService_Get(t *testing.T) { | ||
client, mux, _, teardown := setup() | ||
defer teardown() | ||
|
||
mux.HandleFunc("/codes_of_conduct/k", func(w http.ResponseWriter, r *http.Request) { | ||
testMethod(t, r, "GET") | ||
testHeader(t, r, "Accept", mediaTypeCodesOfConductPreview) | ||
fmt.Fprint(w, `{ | ||
"key": "key", | ||
"name": "name", | ||
"url": "url", | ||
"body": "body"}`, | ||
) | ||
}) | ||
|
||
ctx := context.Background() | ||
coc, _, err := client.GetCodeOfConduct(ctx, "k") | ||
assertNilError(t, err) | ||
|
||
want := &CodeOfConduct{ | ||
Key: String("key"), | ||
Name: String("name"), | ||
URL: String("url"), | ||
Body: String("body"), | ||
} | ||
if !cmp.Equal(want, coc) { | ||
t.Errorf("returned %+v, want %+v", coc, want) | ||
} | ||
|
||
const methodName = "Get" | ||
testBadOptions(t, methodName, func() (err error) { | ||
_, _, err = client.CodesOfConduct.Get(ctx, "\n") | ||
return err | ||
}) | ||
|
||
testNewRequestAndDoFailure(t, methodName, client, func() (*Response, error) { | ||
got, resp, err := client.CodesOfConduct.Get(ctx, "k") | ||
if got != nil { | ||
t.Errorf("testNewRequestAndDoFailure %v = %#v, want nil", methodName, got) | ||
} | ||
return resp, err | ||
}) | ||
} | ||
|
||
func TestCodeOfConduct_Marshal(t *testing.T) { | ||
testJSONMarshal(t, &CodeOfConduct{}, "{}") | ||
|
||
a := &CodeOfConduct{ | ||
Name: String("name"), | ||
Key: String("key"), | ||
URL: String("url"), | ||
Body: String("body"), | ||
} | ||
|
||
want := `{ | ||
"name": "name", | ||
"key": "key", | ||
"url": "url", | ||
"body": "body" | ||
}` | ||
|
||
testJSONMarshal(t, a, want) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Copyright 2023 The go-github AUTHORS. All rights reserved. | ||
// | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package github | ||
|
||
import ( | ||
"context" | ||
) | ||
|
||
// EmojisService provides access to emoji-related functions in the GitHub API. | ||
type EmojisService service | ||
|
||
// List returns the emojis available to use on GitHub. | ||
// | ||
// GitHub API docs: https://docs.github.com/rest/emojis/emojis#get-emojis | ||
func (s *EmojisService) List(ctx context.Context) (map[string]string, *Response, error) { | ||
req, err := s.client.NewRequest("GET", "emojis", nil) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
var emoji map[string]string | ||
resp, err := s.client.Do(ctx, req, &emoji) | ||
if err != nil { | ||
return nil, resp, err | ||
} | ||
|
||
return emoji, resp, nil | ||
} | ||
|
||
// ListEmojis | ||
// Deprecated: Use EmojisService.List instead | ||
func (c *Client) ListEmojis(ctx context.Context) (map[string]string, *Response, error) { | ||
return c.Emojis.List(ctx) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright 2023 The go-github AUTHORS. All rights reserved. | ||
// | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package github | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"net/http" | ||
"testing" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
) | ||
|
||
func TestEmojisService_List(t *testing.T) { | ||
client, mux, _, teardown := setup() | ||
defer teardown() | ||
|
||
mux.HandleFunc("/emojis", func(w http.ResponseWriter, r *http.Request) { | ||
testMethod(t, r, "GET") | ||
fmt.Fprint(w, `{"+1": "+1.png"}`) | ||
}) | ||
|
||
ctx := context.Background() | ||
emoji, _, err := client.ListEmojis(ctx) | ||
if err != nil { | ||
t.Errorf("List returned error: %v", err) | ||
} | ||
|
||
want := map[string]string{"+1": "+1.png"} | ||
if !cmp.Equal(want, emoji) { | ||
t.Errorf("List returned %+v, want %+v", emoji, want) | ||
} | ||
|
||
const methodName = "List" | ||
testNewRequestAndDoFailure(t, methodName, client, func() (*Response, error) { | ||
got, resp, err := client.Emojis.List(ctx) | ||
if got != nil { | ||
t.Errorf("testNewRequestAndDoFailure %v = %#v, want nil", methodName, got) | ||
} | ||
return resp, err | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.