Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
4b20ef76
Commit
4b20ef76
authored
Dec 13, 2016
by
Adam Reese
Committed by
GitHub
Dec 13, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1671 from vdice/add-newline-fetch-verify
feat(helm): add newline to fetch --verify output
parents
0d436e5c
4dd77e77
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
fetch.go
cmd/helm/fetch.go
+1
-1
fetch_test.go
cmd/helm/fetch_test.go
+15
-1
No files found.
cmd/helm/fetch.go
View file @
4b20ef76
...
...
@@ -124,7 +124,7 @@ func (f *fetchCmd) run() error {
}
if
f
.
verify
{
fmt
.
Fprintf
(
f
.
out
,
"Verification: %v"
,
v
)
fmt
.
Fprintf
(
f
.
out
,
"Verification: %v
\n
"
,
v
)
}
// After verification, untar the chart into the requested directory.
...
...
cmd/helm/fetch_test.go
View file @
4b20ef76
...
...
@@ -18,8 +18,10 @@ package main
import
(
"bytes"
"fmt"
"os"
"path/filepath"
"regexp"
"testing"
"k8s.io/helm/pkg/repo/repotest"
...
...
@@ -46,6 +48,7 @@ func TestFetchCmd(t *testing.T) {
failExpect
string
expectFile
string
expectDir
bool
expectVerify
bool
}{
{
name
:
"Basic chart fetch"
,
...
...
@@ -76,6 +79,7 @@ func TestFetchCmd(t *testing.T) {
chart
:
"test/signtest"
,
flags
:
[]
string
{
"--verify"
,
"--keyring"
,
"testdata/helm-test-key.pub"
},
expectFile
:
"./signtest-0.1.0.tgz"
,
expectVerify
:
true
,
},
{
name
:
"Fetch and fail verify"
,
...
...
@@ -87,7 +91,7 @@ func TestFetchCmd(t *testing.T) {
{
name
:
"Fetch and untar"
,
chart
:
"test/signtest"
,
flags
:
[]
string
{
"--
verify"
,
"--keyring"
,
"testdata/helm-test-key.pub"
,
"--
untar"
,
"--untardir"
,
"signtest"
},
flags
:
[]
string
{
"--untar"
,
"--untardir"
,
"signtest"
},
expectFile
:
"./signtest"
,
expectDir
:
true
,
},
...
...
@@ -97,6 +101,7 @@ func TestFetchCmd(t *testing.T) {
flags
:
[]
string
{
"--verify"
,
"--keyring"
,
"testdata/helm-test-key.pub"
,
"--untar"
,
"--untardir"
,
"signtest"
},
expectFile
:
"./signtest"
,
expectDir
:
true
,
expectVerify
:
true
,
},
}
...
...
@@ -126,6 +131,15 @@ func TestFetchCmd(t *testing.T) {
t
.
Errorf
(
"%q reported error: %s"
,
tt
.
name
,
err
)
continue
}
if
tt
.
expectVerify
{
pointerAddressPattern
:=
"0[xX][A-Fa-f0-9]+"
sha256Pattern
:=
"[A-Fa-f0-9]{64}"
verificationRegex
:=
regexp
.
MustCompile
(
fmt
.
Sprintf
(
"Verification: &{%s sha256:%s signtest-0.1.0.tgz}
\n
"
,
pointerAddressPattern
,
sha256Pattern
))
if
!
verificationRegex
.
MatchString
(
buf
.
String
())
{
t
.
Errorf
(
"%q: expected match for regex %s, got %s"
,
tt
.
name
,
verificationRegex
,
buf
.
String
())
}
}
ef
:=
filepath
.
Join
(
outdir
,
tt
.
expectFile
)
fi
,
err
:=
os
.
Stat
(
ef
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment