Skip to content

Commit 849fc5c

Browse files
committed
ci: run PEDM simulator as LocalSystem using psexec
1 parent 7d706c5 commit 849fc5c

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

.github/workflows/ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -1011,6 +1011,17 @@ jobs:
10111011
- name: Run PEDM simulator (limited test)
10121012
run: ./crates/pedm-simulator/run-container.ps1
10131013

1014+
- name: Install PsExec
1015+
run: choco install pstools --yes
1016+
1017+
- name: Test PsExec
1018+
run: psexec -accepteula ipconfig
1019+
1020+
- name: Run PEDM simulator (LocalSystem test)
1021+
run: |
1022+
$scriptPath = Resolve-Path -Path "./crates/pedm-simulator/run-expect-elevated.ps1"
1023+
psexec -accepteula -i -s pwsh.exe $scriptPath
1024+
10141025
success:
10151026
name: Success
10161027
runs-on: ubuntu-latest
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/env pwsh
2+
3+
$ErrorActionPreference = "Stop"
4+
5+
Push-Location -Path $PSScriptRoot
6+
7+
$exitCode = 0
8+
9+
try {
10+
$Env:PEDM_SIMULATOR_EXPECT_ELEVATION = '1'
11+
& ./artifacts/pedm-simulator.exe
12+
$exitCode = $LASTEXITCODE
13+
} finally {
14+
Pop-Location
15+
exit $exitCode
16+
}

crates/pedm-simulator/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fn main() -> anyhow::Result<()> {
122122
} else {
123123
match res {
124124
Ok(_) => {
125-
anyhow::bail!("admin token creation should have failed, because the current process is not elevated")
125+
anyhow::bail!("admin token creation succeded, but this was not expected")
126126
}
127127
Err(e) => {
128128
assert_eq!(e.to_string(), "no token found for SE_CREATE_TOKEN_NAME privilege");

0 commit comments

Comments
 (0)