• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

charmbracelet / glow / 15832530150

23 Jun 2025 06:48PM UTC coverage: 3.417% (-0.3%) from 3.674%
15832530150

Pull #786

github

caarlos0
feat: use fang
Pull Request #786: feat: use fang

1 of 2 new or added lines in 1 file covered. (50.0%)

123 existing lines in 5 files now uncovered.

71 of 2078 relevant lines covered (3.42%)

0.04 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/gitlab.go
1
package main
2

3
import (
4
        "encoding/json"
5
        "errors"
6
        "fmt"
7
        "io"
8
        "net/http"
9
        "net/url"
10
        "strings"
11
)
12

13
// findGitLabREADME tries to find the correct README filename in a repository using GitLab API.
UNCOV
14
func findGitLabREADME(u *url.URL) (*source, error) {
×
15
        owner, repo, ok := strings.Cut(strings.TrimPrefix(u.Path, "/"), "/")
×
16
        if !ok {
×
17
                return nil, fmt.Errorf("invalid url: %s", u.String())
×
18
        }
×
19

UNCOV
20
        projectPath := url.QueryEscape(owner + "/" + repo)
×
21

×
22
        type readme struct {
×
23
                ReadmeURL string `json:"readme_url"`
×
24
        }
×
25

×
26
        apiURL := fmt.Sprintf("https://%s/api/v4/projects/%s", u.Hostname(), projectPath)
×
27

×
28
        //nolint:bodyclose
×
29
        // it is closed on the caller
×
30
        res, err := http.Get(apiURL) //nolint: gosec,noctx
×
31
        if err != nil {
×
32
                return nil, fmt.Errorf("unable to get url: %w", err)
×
33
        }
×
34

35
        body, err := io.ReadAll(res.Body)
×
36
        if err != nil {
×
37
                return nil, fmt.Errorf("unable to read http response body: %w", err)
×
38
        }
×
39

40
        var result readme
×
41
        if err := json.Unmarshal(body, &result); err != nil {
×
42
                return nil, fmt.Errorf("unable to parse json: %w", err)
×
UNCOV
43
        }
×
44

45
        readmeRawURL := strings.ReplaceAll(result.ReadmeURL, "blob", "raw")
×
46

×
47
        if res.StatusCode == http.StatusOK {
×
UNCOV
48
                //nolint:bodyclose
×
49
                // it is closed on the caller
×
50
                resp, err := http.Get(readmeRawURL) //nolint: gosec,noctx
×
51
                if err != nil {
×
52
                        return nil, fmt.Errorf("unable to get url: %w", err)
×
53
                }
×
54

55
                if resp.StatusCode == http.StatusOK {
×
56
                        return &source{resp.Body, readmeRawURL}, nil
×
57
                }
×
58
        }
59

60
        return nil, errors.New("can't find README in GitLab repository")
×
61
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc