-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
104 additions
and
121 deletions.
There are no files selected for viewing
49 changes: 1 addition & 48 deletions
49
src/integrationTest/kotlin/com/sourcegraph/cody/AllSuites.kt
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 |
---|---|---|
@@ -1,55 +1,8 @@ | ||
package com.sourcegraph.cody | ||
|
||
import com.sourcegraph.cody.agent.CodyAgentService | ||
import com.sourcegraph.cody.edit.DocumentCodeTest | ||
import com.sourcegraph.cody.util.CodyIntegrationTextFixture | ||
import com.sourcegraph.cody.util.RepeatableSuite | ||
import java.util.concurrent.TimeUnit | ||
import org.junit.AfterClass | ||
import org.junit.runner.RunWith | ||
import org.junit.runners.Suite | ||
|
||
/** | ||
* We need a single tearDown() method running after all tests are complete, so agent can be closed | ||
* gracefully and recordings can be saved properly. | ||
* | ||
* Due to the limitations of JUnit 4 this can be done only using SuiteClasses and AfterClass, and we | ||
* are forced to use JUnit 4 because IntelliJ testing classes like `BasePlatformTestCase` are based | ||
* on that version. JUnit 4 jar is part of the ideaIC package. We will upgrade to JUnit 5 | ||
* automatically after the platform version bump. | ||
* | ||
* Multiple recording files can be used, but each should have its own suite with tearDown() method | ||
* nad define unique CODY_RECORDING_NAME. | ||
*/ | ||
@RunWith(RepeatableSuite::class) | ||
@Suite.SuiteClasses(DocumentCodeTest::class) | ||
class AllSuites { | ||
companion object { | ||
@AfterClass | ||
@JvmStatic | ||
internal fun tearDown() { | ||
CodyAgentService.withAgent(CodyIntegrationTextFixture.myProject!!) { agent -> | ||
val errors = agent.server.testingRequestErrors().get() | ||
// We extract polly.js errors to notify users about the missing recordings, if any | ||
val missingRecordings = errors.filter { it.error?.contains("`recordIfMissing` is") == true } | ||
missingRecordings.forEach { missing -> | ||
System.err.println( | ||
"""Recording is missing: ${missing.error} | ||
| | ||
|------------------------------------------------------------------------------------------ | ||
|To fix this problem please run `./gradlew :recordingIntegrationTest`. | ||
|You need to export access tokens first, using script from the `sourcegraph/cody` repository: | ||
|`agent/scripts/export-cody-http-recording-tokens.sh` | ||
|------------------------------------------------------------------------------------------ | ||
""" | ||
.trimMargin()) | ||
} | ||
|
||
agent.server | ||
.shutdown() | ||
.get(CodyIntegrationTextFixture.ASYNC_WAIT_TIMEOUT_SECONDS, TimeUnit.SECONDS) | ||
agent.server.exit() | ||
} | ||
} | ||
} | ||
} | ||
@RunWith(RepeatableSuite::class) @Suite.SuiteClasses(DocumentCodeTest::class) class AllSuites |
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.