-
Notifications
You must be signed in to change notification settings - Fork 1k
[WIP] dep: Enable importing other tools and add integration tests #1277
Changes from all commits
97cf253
ebcbca4
9379c0e
4f64d31
95be023
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Import glide config in dependencies. | ||
Import glide config in direct dependencies. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Import deptestglideA tag v0.3.0 which has a corrupt glide manifest. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package: github.com/golang/notexist | ||
homepage: http://example.com | ||
license: MIT | ||
owners: | ||
- name: Sam Boyer | ||
email: [email protected] | ||
homepage: http://sdboyer.io | ||
import: | ||
- package: github.com/ChinmayR/deptestglideA | ||
version: v0.3.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright 2017 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/ChinmayR/deptestglideA" | ||
) | ||
|
||
type PointToDepTestGlideAv010 deptestglideA.Bversion2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"commands": [ | ||
["init", "-no-examples", "-v"] | ||
], | ||
"error-expected": "v0.3.0: unable to parse" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Take a direct dependency on a transient dependency where the versions are conflicted. Resolving should fail. | ||
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. If this test starts failing after the other changes I have requested are made, let's ignore it test temporarily ( add a .ignore file extension to the testcase.json file). The scenario may require additional handling and will be addressed in another issue: #1316. 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. This test does not fail since the existing code only removes transient dependencies read from importers. Since there is also a direct dependency here, the test passes. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package: github.com/golang/notexist | ||
homepage: http://example.com | ||
license: MIT | ||
owners: | ||
- name: Sam Boyer | ||
email: [email protected] | ||
homepage: http://sdboyer.io | ||
import: | ||
- package: github.com/ChinmayR/deptestglideA | ||
version: v0.1.0 | ||
- package: github.com/ChinmayR/deptestglideB | ||
version: v0.2.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright 2017 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/ChinmayR/deptestglideA" | ||
"github.com/ChinmayR/deptestglideB" | ||
) | ||
|
||
type PointToDepTestGlideAv010 deptestglideA.Bversion1 | ||
type FooVersion2 deptestglideB.FooVersion2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"commands": [ | ||
["init", "-no-examples", "-v"] | ||
], | ||
"error-expected": "master: Could not introduce github.com/ChinmayR/deptestglideA@master, as it is not allowed by constraint ^0.1.0 from project github.com/golang/notexist." | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Take a direct dependency on a transient dependency where the versions are not conflicted. Resolving should pass. | ||
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. If this test starts failing after the other changes I have requested are made, let's ignore it test temporarily ( add a .ignore file extension to the testcase.json file). The scenario may require additional handling and will be addressed in another issue: #1316. 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. This test does not fail since the existing code only removes transient dependencies read from importers. Since there is also a direct dependency here, the test passes. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
[[constraint]] | ||
name = "github.com/ChinmayR/deptestglideA" | ||
version = "0.2.0" | ||
|
||
[[constraint]] | ||
name = "github.com/ChinmayR/deptestglideB" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package: github.com/golang/notexist | ||
homepage: http://example.com | ||
license: MIT | ||
owners: | ||
- name: Sam Boyer | ||
email: [email protected] | ||
homepage: http://sdboyer.io | ||
import: | ||
- package: github.com/ChinmayR/deptestglideA | ||
version: v0.2.0 | ||
- package: github.com/ChinmayR/deptestglideB | ||
version: ~0.1.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright 2017 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/ChinmayR/deptestglideA" | ||
"github.com/ChinmayR/deptestglideB" | ||
) | ||
|
||
type PointToDepTestGlideAv010 deptestglideA.Bversion2 | ||
type FooVersion2 deptestglideB.FooVersion2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"commands": [ | ||
["init", "-no-examples", "-v"] | ||
], | ||
"vendor-final": [ | ||
"github.com/ChinmayR/deptestglideA", | ||
"github.com/ChinmayR/deptestglideB" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Have two transient dependencies have different versions of the same repo. Resolving should fail. | ||
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. This test is asserting an unwanted behavior that will be addressed in #1316. But it's a useful test case for that other story, so let's not remove it. Would you please add a .ignore to the testcase.json, and when we implement the other issue, we'll turn this test on, with the correct expected results (i.e. it should not fail). 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. This test starts to fail since we do not import transient dependencies as constraints of the root repo. This results in incorrect resolving since only constraints that are imported are of direct dependencies of the root. I will add a comment to #1316 to also handle this case explicitly. Shouldn't the resolving for this test fail when the test case is enabled again as part of #1316 ? 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. I believe preferred versions handle this case but currently we have no idea of dealing with conflicting preferred versions. 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. Yeah, I'm a bit fuzzy off the top of my head on the topic of conflicting preferred versions. 😊 But that is a dep-wide question, not just for import, so I'd rather deal with it in that other issue and rope in Sam then. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package: github.com/golang/notexist | ||
homepage: http://example.com | ||
license: MIT | ||
owners: | ||
- name: Sam Boyer | ||
email: [email protected] | ||
homepage: http://sdboyer.io | ||
import: | ||
- package: github.com/ChinmayR/deptestglideA | ||
version: v0.4.0 | ||
- package: github.com/ChinmayR/deptestglideB | ||
version: v0.3.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright 2017 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/ChinmayR/deptestglideA" | ||
"github.com/ChinmayR/deptestglideB" | ||
) | ||
|
||
type PointToDepTestGlideCv010 deptestglideA.Cversion1 | ||
type PointToDepTestGlideCv020 deptestglideB.Cversion2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"commands": [ | ||
["init", "-no-examples", "-v"] | ||
], | ||
"error-expected": "No versions of github.com/ChinmayR/deptestglideB met constraints" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Test if a transitive glide manifest is read. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
[[constraint]] | ||
name = "github.com/ChinmayR/deptestglideA" | ||
version = "0.6.0" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package: github.com/golang/notexist | ||
homepage: http://example.com | ||
license: MIT | ||
owners: | ||
- name: Sam Boyer | ||
email: [email protected] | ||
homepage: http://sdboyer.io | ||
import: | ||
- package: github.com/ChinmayR/deptestglideA | ||
version: v0.6.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright 2017 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/ChinmayR/deptestglideA" | ||
) | ||
|
||
type PointToDepTestGlideAv010 deptestglideA.PointToDepTestGlideBv050 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"commands": [ | ||
["init", "-no-examples", "-v"] | ||
], | ||
"vendor-final": [ | ||
"github.com/ChinmayR/deptestglideA", | ||
"github.com/ChinmayR/deptestglideB", | ||
"github.com/ChinmayR/deptestglideC" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Have two direct dependencies where one specifies a direct transient version, | ||
and the other can take any transient but overlapping version. Resolving should pass. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
[[constraint]] | ||
name = "github.com/ChinmayR/deptestglideA" | ||
version = "0.4.0" | ||
|
||
[[constraint]] | ||
name = "github.com/ChinmayR/deptestglideB" | ||
version = "0.4.0" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package: github.com/golang/notexist | ||
homepage: http://example.com | ||
license: MIT | ||
owners: | ||
- name: Sam Boyer | ||
email: [email protected] | ||
homepage: http://sdboyer.io | ||
import: | ||
- package: github.com/ChinmayR/deptestglideA | ||
version: v0.4.0 | ||
- package: github.com/ChinmayR/deptestglideB | ||
version: v0.4.0 |
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.
FYI, I am going to keep this test case for now but once #1315 (which is also part of the epic) is implemented, it will probably be removed because the behavior is changing to not hard fail during solve. The testdata in your repo will be kept and used though, thank you for building that out! ❤️
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.
👍