-
-
Notifications
You must be signed in to change notification settings - Fork 251
Add SocatContainer #964
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
Merged
Merged
Add SocatContainer #964
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d328536
Add SocatContainer
eddumelendez 1cc3482
Add new test using a different internal port
eddumelendez a4cec40
Merge branch 'main' into socat-container
cristianrgreco 39413b5
Export SocatContainer, StartedSocatContainer and add docs
eddumelendez 7b790bd
Move export to index.ts
eddumelendez 7ff800c
Minor refactor
cristianrgreco 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 hidden or 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,29 @@ | ||
| import { fetch } from "undici"; | ||
| import { GenericContainer } from "../generic-container/generic-container"; | ||
| import { Network } from "../network/network"; | ||
| import { SocatContainer } from "./socat-container"; | ||
|
|
||
| describe("Socat", { timeout: 120_000 }, () => { | ||
| it("should forward requests to helloworld container", async () => { | ||
| const network = await new Network().start(); | ||
|
|
||
| const helloworld = await new GenericContainer("testcontainers/helloworld:1.2.0") | ||
| .withExposedPorts(8080) | ||
| .withNetwork(network) | ||
| .withNetworkAliases("helloworld") | ||
| .start(); | ||
|
|
||
| const socat = await new SocatContainer().withNetwork(network).withTarget(8080, "helloworld").start(); | ||
|
|
||
| const socatUrl = `http://${socat.getHost()}:${socat.getMappedPort(8080)}`; | ||
|
|
||
| const response = await fetch(`${socatUrl}/ping`); | ||
|
|
||
| expect(response.status).toBe(200); | ||
| expect(await response.text()).toBe("PONG"); | ||
|
|
||
| await socat.stop(); | ||
| await helloworld.stop(); | ||
| await network.stop(); | ||
| }); | ||
| }); | ||
This file contains hidden or 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,40 @@ | ||
| import { RandomUuid } from "../common"; | ||
| import { AbstractStartedContainer } from "../generic-container/abstract-started-container"; | ||
| import { GenericContainer } from "../generic-container/generic-container"; | ||
| import { StartedTestContainer } from "../test-container"; | ||
|
|
||
| export class SocatContainer extends GenericContainer { | ||
| private targets: { [key in number]: string } = {}; | ||
|
|
||
| constructor(image = "alpine/socat:1.7.4.3-r0") { | ||
| super(image); | ||
| this.withEntrypoint(["/bin/sh"]); | ||
| this.withName(`testcontainers-socat-${new RandomUuid().nextUuid()}`); | ||
| } | ||
|
|
||
| public withTarget(exposePort: number, host: string): this; | ||
| public withTarget(exposePort: number, host: string, internalPort: number): this; | ||
| public withTarget(exposePort: number, host: string, internalPort?: number): this { | ||
| this.withExposedPorts(exposePort); | ||
| if (internalPort == null) { | ||
| internalPort = exposePort; | ||
| } | ||
| this.targets[exposePort] = `${host}:${internalPort}`; | ||
| return this; | ||
| } | ||
|
|
||
| public override async start(): Promise<StartedSocatContainer> { | ||
| const command = Object.entries(this.targets) | ||
| .map(([exposePort, target]) => `socat TCP-LISTEN:${exposePort},fork,reuseaddr TCP:${target}`) | ||
| .join(" & "); | ||
|
|
||
| this.withCommand(["-c", command]); | ||
| return new StartedSocatContainer(await super.start()); | ||
| } | ||
| } | ||
|
|
||
| export class StartedSocatContainer extends AbstractStartedContainer { | ||
| constructor(startedTestcontainers: StartedTestContainer) { | ||
| super(startedTestcontainers); | ||
| } | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.