This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
Fix- Print error messages in pre builder #829
Merged
brunasilvazup
merged 18 commits into
ZupIT:master
from
brunasilvazup:fix/print-error-messages-in-pre-builder
Feb 8, 2021
Merged
Changes from 15 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
d2df0ee
Fix error message presentation
brunasilvazup 15e6ceb
Mocks tests
brunasilvazup 4a973d7
Extracts mock functions to specific file
brunasilvazup fc1bb61
Changed the prerunbuilders build method signature to return errors
brunasilvazup 2564baa
Changed mock tests to testify
brunasilvazup 17375e8
Added more tests
brunasilvazup ca63571
Fix lint
brunasilvazup 2d9cf86
Added more tests
brunasilvazup de3456a
Merge
brunasilvazup e5ef80a
Merge branch 'master' of github.com:brunasilvazup/ritchie-cli into fi…
brunasilvazup 972f69b
Fix test
brunasilvazup 4ad033f
Update mock files
brunasilvazup aedbcc5
Added more tests
brunasilvazup 94f6f8c
Fix small details
brunasilvazup 51423db
Merge branch 'master' of github.com:brunasilvazup/ritchie-cli into fi…
brunasilvazup 2cc252b
Extracts sort from the list of providers for method list
brunasilvazup a734cc3
Merge branch 'master' of github.com:brunasilvazup/ritchie-cli into fi…
brunasilvazup 7ca2eb8
Remove extra sort
brunasilvazup 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright 2020 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package mocks | ||
|
||
import ( | ||
"github.com/ZupIT/ritchie-cli/pkg/formula" | ||
"github.com/stretchr/testify/mock" | ||
) | ||
|
||
type BuilderMock struct { | ||
mock.Mock | ||
} | ||
|
||
func (b *BuilderMock) Build(info formula.BuildInfo) error { | ||
args := b.Called(info) | ||
return args.Error(0) | ||
} | ||
|
||
func (b *BuilderMock) HasBuilt() bool { | ||
args := b.Called() | ||
return args.Bool(0) | ||
} |
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,28 @@ | ||
/* | ||
* Copyright 2020 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package mocks | ||
|
||
import "github.com/stretchr/testify/mock" | ||
|
||
type PreRunBuilder struct { | ||
mock.Mock | ||
} | ||
|
||
func (prb *PreRunBuilder) Build(relativePath string) error { | ||
args := prb.Called(relativePath) | ||
return args.Error(0) | ||
} |
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,46 @@ | ||
/* | ||
* Copyright 2020 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package mocks | ||
|
||
import ( | ||
"github.com/ZupIT/ritchie-cli/pkg/formula" | ||
"github.com/stretchr/testify/mock" | ||
) | ||
|
||
type WorkspaceListHasherMock struct { | ||
mock.Mock | ||
} | ||
|
||
func (w *WorkspaceListHasherMock) List() (formula.Workspaces, error) { | ||
args := w.Called() | ||
return args.Get(0).(formula.Workspaces), args.Error(1) | ||
} | ||
|
||
func (w *WorkspaceListHasherMock) CurrentHash(formulaPath string) (string, error) { | ||
args := w.Called(formulaPath) | ||
return args.String(0), args.Error(1) | ||
} | ||
|
||
func (w *WorkspaceListHasherMock) PreviousHash(formulaPath string) (string, error) { | ||
args := w.Called(formulaPath) | ||
return args.String(0), args.Error(1) | ||
} | ||
|
||
func (w *WorkspaceListHasherMock) UpdateHash(formulaPath string, hash string) error { | ||
args := w.Called(formulaPath, hash) | ||
return args.Error(0) | ||
} |
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
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
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.
can you move the sort to inside the
ar.repoProviders.List()
method? It should not be the responsibility of this command to know that. Also, this way we only need to edit a single point in code, other packages invoking this method could stumble upon the same problemThere 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.
Yes, I can change, you're right.