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

lightningnetwork / lnd / 13593508312

28 Feb 2025 05:41PM UTC coverage: 58.287% (-10.4%) from 68.65%
13593508312

Pull #9458

github

web-flow
Merge d40067c0c into f1182e433
Pull Request #9458: multi+server.go: add initial permissions for some peers

346 of 548 new or added lines in 10 files covered. (63.14%)

27412 existing lines in 442 files now uncovered.

94709 of 162488 relevant lines covered (58.29%)

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