Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
29 changes: 29 additions & 0 deletions packages/testcontainers/src/socat/socat-container.test.ts
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();
});
});
40 changes: 40 additions & 0 deletions packages/testcontainers/src/socat/socat-container.ts
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);
}
}
Loading