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

lightningnetwork / lnd / 15561477203

10 Jun 2025 01:54PM UTC coverage: 58.351% (-10.1%) from 68.487%
15561477203

Pull #9356

github

web-flow
Merge 6440b25db into c6d6d4c0b
Pull Request #9356: lnrpc: add incoming/outgoing channel ids filter to forwarding history request

33 of 36 new or added lines in 2 files covered. (91.67%)

28366 existing lines in 455 files now uncovered.

97715 of 167461 relevant lines covered (58.35%)

1.81 hits per line

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

54.55
/lncfg/color.go
1
package lncfg
2

3
import (
4
        "encoding/hex"
5
        "errors"
6
        "image/color"
7
        "regexp"
8
)
9

10
var (
11
        // validColorRegexp is a regexp that lets you check if a particular
12
        // color string matches the standard hex color format #RRGGBB.
13
        validColorRegexp = regexp.MustCompile("^#[A-Fa-f0-9]{6}$")
14
)
15

16
// ParseHexColor takes a hex string representation of a color in the
17
// form "#RRGGBB", parses the hex color values, and returns a color.RGBA
18
// struct of the same color.
19
func ParseHexColor(colorStr string) (color.RGBA, error) {
3✔
20
        // Check if the hex color string is a valid color representation.
3✔
21
        if !validColorRegexp.MatchString(colorStr) {
3✔
UNCOV
22
                return color.RGBA{}, errors.New("color must be specified " +
×
UNCOV
23
                        "using a hexadecimal value in the form #RRGGBB")
×
UNCOV
24
        }
×
25

26
        // Decode the hex color string to bytes.
27
        // The resulting byte array is in the form [R, G, B].
28
        colorBytes, err := hex.DecodeString(colorStr[1:])
3✔
29
        if err != nil {
3✔
30
                return color.RGBA{}, err
×
31
        }
×
32

33
        return color.RGBA{R: colorBytes[0], G: colorBytes[1], B: colorBytes[2]}, nil
3✔
34
}
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

© 2025 Coveralls, Inc