This repository was archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
Respect dry run flag during dep ensure #256
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ea0a384
Wrap errors in the test helper that were missed the first time through
carolynvs 578974f
Add test.Helper.GetTestFile
carolynvs 891494b
Wrap fs errors to include a better message and callstack
carolynvs 1c50c3a
Add TestProjectContext to manage common testing tasks
carolynvs e43a3b8
Respect dry-run flag during dep ensure
carolynvs 6ac8a77
Split out SafeWriter bad input tests into 1 per scenario
carolynvs 6f72258
Don't leave open test file handles open
carolynvs d02eb69
Extract version type matching into a single function
carolynvs 02635cc
Display diff of lock file during dry-run
carolynvs b237632
Rename LockedProjectDiff Repository -> Source
carolynvs 7e27e80
Display all fields for a removed project in the lock diff
carolynvs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
cmd/dep/testdata/harness_tests/ensure/update/case2/final/lock.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"memo": "9a5243dd3fa20feeaa20398e7283d6c566532e2af1aae279a010df34793761c5", | ||
"projects": [ | ||
{ | ||
"name": "github.com/sdboyer/deptest", | ||
"version": "v0.8.0", | ||
"revision": "ff2948a2ac8f538c4ecd55962e919d1e13e74baf", | ||
"packages": [ | ||
"." | ||
] | ||
}, | ||
{ | ||
"name": "github.com/sdboyer/deptestdos", | ||
"version": "v2.0.0", | ||
"revision": "5c607206be5decd28e6263ffffdcee067266015e", | ||
"packages": [ | ||
"." | ||
] | ||
} | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
cmd/dep/testdata/harness_tests/ensure/update/case2/final/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"dependencies": { | ||
"github.com/sdboyer/deptest": { | ||
"version": "~0.8.0" | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
cmd/dep/testdata/harness_tests/ensure/update/case2/initial/lock.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"memo": "9a5243dd3fa20feeaa20398e7283d6c566532e2af1aae279a010df34793761c5", | ||
"projects": [ | ||
{ | ||
"name": "github.com/sdboyer/deptest", | ||
"version": "v0.8.0", | ||
"revision": "ff2948a2ac8f538c4ecd55962e919d1e13e74baf", | ||
"packages": [ | ||
"." | ||
] | ||
}, | ||
{ | ||
"name": "github.com/sdboyer/deptestdos", | ||
"version": "v2.0.0", | ||
"revision": "5c607206be5decd28e6263ffffdcee067266015e", | ||
"packages": [ | ||
"." | ||
] | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
cmd/dep/testdata/harness_tests/ensure/update/case2/initial/main.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright 2016 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package main | ||
|
||
import ( | ||
"github.com/sdboyer/deptest" | ||
"github.com/sdboyer/deptestdos" | ||
) | ||
|
||
func main() { | ||
err := nil | ||
if err != nil { | ||
deptest.Map["yo yo!"] | ||
} | ||
deptestdos.diMeLo("whatev") | ||
} |
7 changes: 7 additions & 0 deletions
7
cmd/dep/testdata/harness_tests/ensure/update/case2/initial/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"dependencies": { | ||
"github.com/sdboyer/deptest": { | ||
"version": "~0.8.0" | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
cmd/dep/testdata/harness_tests/ensure/update/case2/testcase.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"commands": [ | ||
["init"], | ||
["ensure", "-n", "-update", "github.com/sdboyer/deptest"] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,23 +102,7 @@ func (l *Lock) MarshalJSON() ([]byte, error) { | |
} | ||
|
||
v := lp.Version() | ||
// Figure out how to get the underlying revision | ||
switch tv := v.(type) { | ||
case gps.UnpairedVersion: | ||
// TODO we could error here, if we want to be very defensive about not | ||
// allowing a lock to be written if without an immmutable revision | ||
case gps.Revision: | ||
ld.Revision = tv.String() | ||
case gps.PairedVersion: | ||
ld.Revision = tv.Underlying().String() | ||
} | ||
|
||
switch v.Type() { | ||
case gps.IsBranch: | ||
ld.Branch = v.String() | ||
case gps.IsSemver, gps.IsVersion: | ||
ld.Version = v.String() | ||
} | ||
ld.Revision, ld.Branch, ld.Version = getVersionInfo(v) | ||
|
||
raw.P[k] = ld | ||
} | ||
|
@@ -134,6 +118,29 @@ func (l *Lock) MarshalJSON() ([]byte, error) { | |
return buf.Bytes(), err | ||
} | ||
|
||
// TODO(carolynvs) this should be moved to gps | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's make an issue for this. (I'm not quite fully convinced, but still, an issue is the thing to do.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would only need to move to |
||
func getVersionInfo(v gps.Version) (revision string, branch string, version string) { | ||
// Figure out how to get the underlying revision | ||
switch tv := v.(type) { | ||
case gps.UnpairedVersion: | ||
// TODO we could error here, if we want to be very defensive about not | ||
// allowing a lock to be written if without an immmutable revision | ||
case gps.Revision: | ||
revision = tv.String() | ||
case gps.PairedVersion: | ||
revision = tv.Underlying().String() | ||
} | ||
|
||
switch v.Type() { | ||
case gps.IsBranch: | ||
branch = v.String() | ||
case gps.IsSemver, gps.IsVersion: | ||
version = v.String() | ||
} | ||
|
||
return | ||
} | ||
|
||
// LockFromInterface converts an arbitrary gps.Lock to dep's representation of a | ||
// lock. If the input is already dep's *lock, the input is returned directly. | ||
// | ||
|
@@ -177,14 +184,3 @@ func (s SortedLockedProjects) Less(i, j int) bool { | |
|
||
return l.Source < r.Source | ||
} | ||
|
||
// locksAreEquivalent compares two locks to see if they differ. If EITHER lock | ||
// is nil, or their memos do not match, or any projects differ, then false is | ||
// returned. | ||
func locksAreEquivalent(l, r *Lock) bool { | ||
if l == nil || r == nil { | ||
return false | ||
} | ||
|
||
return gps.LocksAreEq(l, r, true) | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These errs changes aren't really related - next time, let's separate unrelated things into their own PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry about that! I'll make sure to split these up better next time. Thank you for your patience.