Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Smoke tests are failing due to missing otlp attribute #290

Closed
tim-mwangi opened this issue Mar 17, 2021 · 0 comments · Fixed by #292
Closed

Smoke tests are failing due to missing otlp attribute #290

tim-mwangi opened this issue Mar 17, 2021 · 0 comments · Fixed by #292
Labels
bug Something isn't working

Comments

@tim-mwangi
Copy link
Contributor

The smoke tests are failing since otel.library.version attribute does not match the agent version. Also I debugged a bit and this attribute is not even set.

eg. SpringBootDisabledBodyCaptureSmokeTest line 83

Assertions.assertTrue(
        getSpanStream(traces)
                .flatMap(span -> span.getAttributesList().stream())
                .filter(attribute -> attribute.getKey().equals(OTEL_LIBRARY_VERSION_ATTRIBUTE))
                .map(attribute -> attribute.getValue().getStringValue())
                .filter(value -> value.equals(currentAgentVersion))
                .count()
            > 0)

More logs:

javaagent % make smoke-test                          
./gradlew :smoke-tests:test --stacktrace

> Task :smoke-tests:test
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:<homedir>.gradle/caches/modules-2/files-2.1/org.codehaus.groovy/groovy/2.5.11/4d8f25c5da08af46fb204fd493ec894699a3f4e8/groovy-2.5.11.jar) to method java.lang.Object.finalize()
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release

SpringBootDisabledBodyCaptureSmokeTest > get() FAILED
    org.opentest4j.AssertionFailedError: expected: <true> but was: <false>
        at org.junit.jupiter.api.AssertionUtils.fail(AssertionUtils.java:55)
        at org.junit.jupiter.api.AssertTrue.assertTrue(AssertTrue.java:40)
        at org.junit.jupiter.api.AssertTrue.assertTrue(AssertTrue.java:35)
        at org.junit.jupiter.api.Assertions.assertTrue(Assertions.java:162)
        at org.hypertrace.agent.smoketest.SpringBootDisabledBodyCaptureSmokeTest.get(SpringBootDisabledBodyCaptureSmokeTest.java:83)
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/<homedir>.gradle/caches/modules-2/files-2.1/org.codehaus.groovy/groovy/2.5.11/4d8f25c5da08af46fb204fd493ec894699a3f4e8/groovy-2.5.11.jar) to method java.lang.Object.finalize()
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release

SpringBootSmokeTest > get() FAILED
    org.opentest4j.AssertionFailedError: expected: <true> but was: <false>
        at org.junit.jupiter.api.AssertionUtils.fail(AssertionUtils.java:55)
        at org.junit.jupiter.api.AssertTrue.assertTrue(AssertTrue.java:40)
        at org.junit.jupiter.api.AssertTrue.assertTrue(AssertTrue.java:35)
        at org.junit.jupiter.api.Assertions.assertTrue(Assertions.java:162)
        at org.hypertrace.agent.smoketest.SpringBootSmokeTest.get(SpringBootSmokeTest.java:102)
<============-> 99% EXECUTING [15m 8s]
> :smoke-tests:test > 172 tests completed, 2 failed
> IDLE
> :smoke-tests:test > Executing test org.hypertrace.agent.smoketest.GrpcSmokeTest
^Cmake: *** [smoke-test] Error 130
@tim-mwangi tim-mwangi added the bug Something isn't working label Mar 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant