Skip to content
This repository has been archived by the owner on Oct 29, 2021. It is now read-only.

Commit

Permalink
Remove Core from Module type
Browse files Browse the repository at this point in the history
Fixes #15

Signed-off-by: yugo-horie <u5.horie@gmail.com>
  • Loading branch information
u5surf committed Oct 13, 2021
1 parent 0e65d95 commit 43c1c6d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
11 changes: 9 additions & 2 deletions internal/builder/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ const defaultOtelColVersion = "0.36.0"
// ErrInvalidGoMod indicates an invalid gomod
var ErrInvalidGoMod = errors.New("invalid gomod specification for module")

// ErrDeprecatedCore indicates deprecated core
var ErrDeprecatedCore = errors.New("mod.Core has deprecated, you should not be used anymore and required to be set mod.GoMod instead")

// Config holds the builder's configuration
type Config struct {
Logger logr.Logger
Expand Down Expand Up @@ -64,7 +67,8 @@ type Module struct {
Import string `mapstructure:"import"` // if not specified, this is the path part of the go mods
GoMod string `mapstructure:"gomod"` // a gomod-compatible spec for the module
Path string `mapstructure:"path"` // an optional path to the local version of this module
Core bool `mapstructure:"core"` // whether this module comes from core, meaning that no further dependencies will be added
Core *bool `mapstructure:"core"` // whether this module comes from core. For this property isn't referred from anywhere, it might be removed. please see #15.

}

// DefaultConfig creates a new config, with default values
Expand Down Expand Up @@ -134,7 +138,10 @@ func (c *Config) ParseModules() error {
func parseModules(mods []Module) ([]Module, error) {
var parsedModules []Module
for _, mod := range mods {
if mod.GoMod == "" && !mod.Core {
if mod.Core != nil {
return mods, ErrDeprecatedCore
}
if mod.GoMod == "" {
return mods, fmt.Errorf("%w, module: %q", ErrInvalidGoMod, mod.GoMod)
}

Expand Down
5 changes: 2 additions & 3 deletions internal/builder/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ func TestRelativePath(t *testing.T) {
func TestModuleFromCore(t *testing.T) {
// prepare
cfg := Config{
Extensions: []Module{{
Core: true,
Extensions: []Module{{ // see issue-12
Import: "go.opentelemetry.io/collector/receiver/jaegerreceiver",
GoMod: "go.opentelemetry.io/collector v0.36.0",
}},
}

Expand All @@ -77,7 +77,6 @@ func TestModuleFromCore(t *testing.T) {

// verify
assert.True(t, strings.HasPrefix(cfg.Extensions[0].Name, "jaegerreceiver"))
assert.Empty(t, cfg.Extensions[0].GoMod)
}

func TestInvalidModule(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions test/nocore.builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ dist:

receivers:
- import: go.opentelemetry.io/collector/receiver/otlpreceiver
core: true
gomod: go.opentelemetry.io/collector v0.36.0
exporters:
- import: go.opentelemetry.io/collector/exporter/loggingexporter
core: true
gomod: go.opentelemetry.io/collector v0.36.0
extensions:
- import: go.opentelemetry.io/collector/extension/zpagesextension
core: true
gomod: go.opentelemetry.io/collector v0.36.0

0 comments on commit 43c1c6d

Please sign in to comment.