Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class WeakCipherTest extends AgentTestRunner {
}

// Key Generator
def "test weak cipher instrumentation"() {
def "test weak keygen instrumentation"() {
setup:
WeakCipherModule module = Mock(WeakCipherModule)
InstrumentationBridge.registerIastModule(module)
Expand All @@ -75,7 +75,7 @@ class WeakCipherTest extends AgentTestRunner {
1 * module.onCipherAlgorithm(_)
}

def "test weak cipher instrumentation with provider"() {
def "test weak keygen instrumentation with provider"() {
setup:
WeakCipherModule module = Mock(WeakCipherModule)
InstrumentationBridge.registerIastModule(module)
Expand All @@ -88,7 +88,7 @@ class WeakCipherTest extends AgentTestRunner {
1 * module.onCipherAlgorithm(_)
}

def "test weak cipher instrumentation with provider string"() {
def "test weak keygen instrumentation with provider string"() {
setup:
WeakCipherModule module = Mock(WeakCipherModule)
InstrumentationBridge.registerIastModule(module)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class SamplerTest extends DDSpecification{
!(sampler instanceof AsmStandaloneSampler)
}

void "test that AsmStandaloneSampler is not selected when apm tracing and asm not enabled"() {
void "test that AsmStandaloneSampler is not selected when apm tracing enabled and asm not enabled"() {
setup:
Config config = new Config()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class PrioritizationTest extends DDSpecification {
[] | USER_KEEP | 1 | 0 | ENQUEUED_FOR_SERIALIZATION
}

def "drop strategy respects force keep" () {
def "span sampling drop strategy respects force keep" () {
setup:
Queue<Object> primary = Mock(Queue)
Queue<Object> spanSampling = Mock(Queue)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ class TelemetryRouterSpecification extends Specification {
500 | null | agentTelemetryUrl
}

def 'switch to Intake when Agent fails to receive telemetry requests'() {
def 'switch to Intake then back to Agent when both fail to receive telemetry requests'() {
Request request

when:
Expand Down