https://github.com/devtools-qe-incubator/fxc
Container allowing create fake client connections with an X-Session; this is mainly intended to run UX testing on a remote target
https://github.com/devtools-qe-incubator/fxc
fake rdp ux-testing vnc x-session xvfb
Last synced: 8 months ago
JSON representation
Container allowing create fake client connections with an X-Session; this is mainly intended to run UX testing on a remote target
- Host: GitHub
- URL: https://github.com/devtools-qe-incubator/fxc
- Owner: devtools-qe-incubator
- License: apache-2.0
- Created: 2021-09-17T08:43:59.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-15T14:27:43.000Z (over 1 year ago)
- Last Synced: 2025-02-17T01:28:05.321Z (8 months ago)
- Topics: fake, rdp, ux-testing, vnc, x-session, xvfb
- Language: Shell
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fxc
Container allowing create fake connections to emulate X sessions.
[](https://quay.io/repository/rhqp/fxc)
## Run container
Container should be run with mandatory envs: *HOST*, *USER*, *PASSWORD*
Env *INSECURE* allows to force certificate validation on connection (only for RDP connections). Default value is true, so no certificate validation
```bash
# vnc fake connection
podman run -d --rm --name fxc-vnc \
-e PROTOCOL=vnc \
-e HOST=x.x.x.x \
-e USER=fake \
-e PASSWORDs=fake \
quay.io/rhqp/fxc:v1.0.0-dev# rdp fake connection
podman run -d --rm --name fxc-rdp \
-e PROTOCOL=rdp \
-e HOST=x.x.x.x \
-e USER=fake \
-e PASSWORDs=fake \
quay.io/rhqp/fxc:v1.0.0-dev
```