forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add metrics correctness support to make + ci (#2289)
Co-authored-by: Bogdan Drutu <bogdandrutu@gmail.com>
- Loading branch information
1 parent
953bf83
commit 6e6a088
Showing
5 changed files
with
165 additions
and
7 deletions.
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
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,73 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// 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 metrics | ||
|
||
import ( | ||
"fmt" | ||
"io" | ||
"log" | ||
"os" | ||
"path" | ||
"time" | ||
) | ||
|
||
type results struct { | ||
resultsFile *os.File | ||
} | ||
|
||
type result struct { | ||
testName string | ||
testResult string | ||
numDiffs int | ||
} | ||
|
||
func (r *results) Init(resultsDir string) { | ||
err := os.MkdirAll(resultsDir, os.FileMode(0755)) | ||
if err != nil { | ||
log.Fatalf(err.Error()) | ||
} | ||
r.resultsFile, err = os.Create(path.Join(resultsDir, "CORRECTNESSRESULTS.md")) | ||
if err != nil { | ||
log.Fatalf(err.Error()) | ||
} | ||
r.writeString( | ||
"# Test Results\n" + | ||
fmt.Sprintf("Started: %s\n\n", time.Now().Format(time.RFC1123Z)) + | ||
"Test |Result|Num Diffs|\n" + | ||
"----------------------------------------|------|--------:|\n", | ||
) | ||
} | ||
|
||
func (r *results) Add(_ string, rslt interface{}) { | ||
tr := rslt.(result) | ||
line := fmt.Sprintf( | ||
"%-40s|%-6s|%9d|\n", | ||
tr.testName, | ||
tr.testResult, | ||
tr.numDiffs, | ||
) | ||
r.writeString(line) | ||
} | ||
|
||
func (r *results) writeString(s string) { | ||
_, _ = io.WriteString(r.resultsFile, s) | ||
} | ||
|
||
func (r *results) Save() { | ||
err := r.resultsFile.Close() | ||
if err != nil { | ||
panic(err) | ||
} | ||
} |
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,35 @@ | ||
#!/bin/bash | ||
|
||
# Copyright The OpenTelemetry Authors | ||
# | ||
# 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. | ||
|
||
set -e | ||
|
||
SED="sed" | ||
|
||
PASS_COLOR=$(printf "\033[32mPASS\033[0m") | ||
FAIL_COLOR=$(printf "\033[31mFAIL\033[0m") | ||
TEST_COLORIZE="${SED} 's/PASS/${PASS_COLOR}/' | ${SED} 's/FAIL/${FAIL_COLOR}/'" | ||
echo ${TEST_ARGS} | ||
mkdir -p results | ||
go test -v ${TEST_ARGS} 2>&1 | tee results/testoutput.log | bash -c "${TEST_COLORIZE}" | ||
|
||
testStatus=${PIPESTATUS[0]} | ||
|
||
mkdir -p results/junit | ||
go-junit-report < results/testoutput.log > results/junit/results.xml | ||
|
||
bash -c "cat results/CORRECTNESSRESULTS.md | ${TEST_COLORIZE}" | ||
|
||
exit ${testStatus} |