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

ISSUE-10 - Allow host machine to run tests #15

Merged
merged 6 commits into from
Mar 26, 2025
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ docker-compose up -d // Run httpd and chromedriver
docker-compose run test // Run Tests in Docker
```

# Testing on Host Machine
```bash
docker compose up selenium httpd -d
```
2. Run tests via test runner / `swift test`


# Example
### Start snd Stop
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@ protocol ChromeDriverIntegrationTests {
}

class ChromeDriverTest: ChromeDriverIntegrationTests {
let baseUrl: String = "http://httpd"
let baseUrl: String = "http://localhost"
var testPageURL: URL {
.init(string: "\(baseUrl)/\(page)")!
}

var page: String = "index.html"
var driver: WebDriver<ChromeDriver>

init() async throws {
let driverURL = URL(string: "http://selenium:4444")!
let driverURL = URL(string: "http://localhost:4444")!
let chromeOptions = ChromeOptions(args: [
Args(.disableDevShmUsage),
Args(.noSandbox)
])

// Initialize the WebDriver on the main actor
self.driver = WebDriver(
driver: ChromeDriver(
driverURL: driverURL,
browserObject: chromeOptions
)
)

try await self.driver.start()
}
}
12 changes: 3 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@ version: '3'
services:
httpd:
image: httpd
networks:
- net1
network_mode: host
volumes:
- ./TestAssets:/usr/local/apache2/htdocs/
ports:
- "80:80"

selenium:
image: selenium/standalone-chrome:4.2.1-20220531
networks:
- net1
network_mode: host
ports:
- 4444:4444
- 7900:7900
Expand All @@ -25,8 +23,7 @@ services:
volumes:
- .:/SwiftWebDriver
working_dir: /SwiftWebDriver
networks:
- net1
network_mode: host
environment:
SELENIUM_URL: http://localhost:4444
tty: true
Expand All @@ -45,6 +42,3 @@ services:
shell:
<<: *SwiftWebDriver
entrypoint: /bin/bash

networks:
net1: