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

lightningnetwork / lnd / 15736109134

18 Jun 2025 02:46PM UTC coverage: 58.197% (-10.1%) from 68.248%
15736109134

Pull #9752

github

web-flow
Merge d2634a68c into 31c74f20f
Pull Request #9752: routerrpc: reject payment to invoice that don't have payment secret or blinded paths

6 of 13 new or added lines in 2 files covered. (46.15%)

28331 existing lines in 455 files now uncovered.

97860 of 168153 relevant lines covered (58.2%)

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