Skip to content

Commit e918e63

Browse files
author
James Brundage
committed
fix: Not using /tmp in tests
1 parent 615b1da commit e918e63

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

RoughDraft.tests.ps1

+30-30
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
describe Convert-Media {
1212
it 'Can convert media between formats' {
13-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "testsrc2$(Get-Random).mkv"
14-
$mp4Path = Join-Path ([IO.Path]::GetTempPath()) "testsrc2$(Get-Random).mp4"
13+
$tmpOutPath = Join-Path "$pwd" "testsrc2$(Get-Random).mkv"
14+
$mp4Path = Join-Path "$pwd" "testsrc2$(Get-Random).mp4"
1515
$converted = New-Media -TestSource testsrc2 -OutputPath $tmpOutPath -Duration "00:00:01" |
1616
Convert-Media -OutputPath $mp4Path
1717
$converted |
@@ -27,7 +27,7 @@ describe Convert-Media {
2727
}
2828

2929
it 'Can turn a still image into a video' {
30-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "testsrc2$(Get-Random).png"
30+
$tmpOutPath = Join-Path "$pwd" "testsrc2$(Get-Random).png"
3131
$converted = New-Media -TestSource testsrc2 -OutputPath $tmpOutPath -Duration "00:00:01" |
3232
Convert-Media -OutputPath mp4 -Duration "00:15:00"
3333
$converted |
@@ -42,8 +42,8 @@ describe Convert-Media {
4242
}
4343

4444
it 'Can use an extension to -Resize while converting' {
45-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "testsrc2$(Get-Random).mp4"
46-
$tmpOutPath2 = Join-Path ([IO.Path]::GetTempPath()) "testsrc2$(Get-Random).mp4"
45+
$tmpOutPath = Join-Path "$pwd" "testsrc2$(Get-Random).mp4"
46+
$tmpOutPath2 = Join-Path "$pwd" "testsrc2$(Get-Random).mp4"
4747
$converted = New-Media -TestSource testsrc2 -OutputPath $tmpOutPath -Duration "00:00:05" |
4848
Convert-Media -OutputPath $tmpOutPath2 -Resize '1024x720'
4949
$converted | Get-Media | Select-Object -ExpandProperty Resolution | Should -Be '1024x720'
@@ -53,7 +53,7 @@ describe Convert-Media {
5353

5454
context "Error Handling" {
5555
it 'Will complain when no codec is found' {
56-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "testsrc2$(Get-Random).png"
56+
$tmpOutPath = Join-Path "$pwd" "testsrc2$(Get-Random).png"
5757
New-Media -TestSource testsrc2 -OutputPath $tmpOutPath -FrameCount 1
5858
$err = @()
5959
Get-Item $tmpOutPath | Convert-Media -Codec askljska -ErrorAction SilentlyContinue -OutputPath .\test.mp4 -ErrorVariable err
@@ -66,9 +66,9 @@ describe Convert-Media {
6666

6767
describe ConvertTo-GIF {
6868
it 'Can make gifs' {
69-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).mp3"
70-
$tmpOutPath2 = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).mp4"
71-
$tmpOutPath3 = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).gif"
69+
$tmpOutPath = Join-Path "$pwd" "sine$(Get-Random).mp3"
70+
$tmpOutPath2 = Join-Path "$pwd" "sine$(Get-Random).mp4"
71+
$tmpOutPath3 = Join-Path "$pwd" "sine$(Get-Random).gif"
7272
$waveform = New-Media -Sine -OutputPath $tmpOutPath -Duration "00:00:05" |
7373
Edit-Media -ShowWaveform -ShowWaveformMode line -OutputPath $tmpOutPath2
7474

@@ -85,7 +85,7 @@ describe ConvertTo-GIF {
8585

8686
describe Edit-Media {
8787
it 'Can edit media' {
88-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "colorspectrum$(Get-Random).mp4"
88+
$tmpOutPath = Join-Path "$pwd" "colorspectrum$(Get-Random).mp4"
8989
$edited = New-Media -TestSource rgbtestsrc -OutputPath $tmpOutPath -Duration "00:00:05" |
9090
Edit-media -Sepia
9191

@@ -100,7 +100,7 @@ describe Edit-Media {
100100

101101
context "Error Handling" {
102102
it 'Will complain when no codec is found' {
103-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "testsrc2$(Get-Random).png"
103+
$tmpOutPath = Join-Path "$pwd" "testsrc2$(Get-Random).png"
104104
New-Media -TestSource testsrc2 -OutputPath $tmpOutPath -FrameCount 1
105105
$err = @()
106106
Get-Item $tmpOutPath | Edit-Media -Codec askljska -ErrorAction SilentlyContinue -OutputPath .\test.mp4 -ErrorVariable err -FadeIn
@@ -113,7 +113,7 @@ describe Edit-Media {
113113

114114
describe Get-Media {
115115
it 'Can detect volume' {
116-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).mp3"
116+
$tmpOutPath = Join-Path "$pwd" "sine$(Get-Random).mp3"
117117
New-Media -Sine -OutputPath $tmpOutPath -Duration "00:00:05" |
118118
Get-Media -VolumeLevel |
119119
Out-String |
@@ -125,9 +125,9 @@ describe Get-Media {
125125

126126
describe Join-Media {
127127
it 'Can combine an audio file and a video file' {
128-
$videoTmpPath = Join-Path ([IO.Path]::GetTempPath()) "Video$(Get-Random).mp4"
129-
$audioTmpPath = Join-Path ([IO.Path]::GetTempPath()) "Audio$(Get-Random).mp3"
130-
$avTmpPath = Join-Path ([IO.Path]::GetTempPath()) "AV$(Get-Random).mp4"
128+
$videoTmpPath = Join-Path "$pwd" "Video$(Get-Random).mp4"
129+
$audioTmpPath = Join-Path "$pwd" "Audio$(Get-Random).mp3"
130+
$avTmpPath = Join-Path "$pwd" "AV$(Get-Random).mp4"
131131
@(
132132
New-Media -TestSource rgbtestsrc -Duration "00:00:30" -OutputPath $videoTmpPath
133133
New-Media -Sine -Duration "00:00:15" -OutputPath $audioTmpPath
@@ -145,14 +145,14 @@ describe Join-Media {
145145
}
146146
it 'Can join files of different codecs' {
147147
$videoTmpPaths = @(
148-
Join-Path ([IO.Path]::GetTempPath()) "Video$(Get-Random).mp4"
149-
Join-Path ([IO.Path]::GetTempPath()) "Video$(Get-Random).mp4"
150-
Join-Path ([IO.Path]::GetTempPath()) "JoinedVideo$(Get-Random).mp4"
148+
Join-Path "$pwd" "Video$(Get-Random).mp4"
149+
Join-Path "$pwd" "Video$(Get-Random).mp4"
150+
Join-Path "$pwd" "JoinedVideo$(Get-Random).mp4"
151151
)
152152
$audioTmpPaths = @(
153-
Join-Path ([IO.Path]::GetTempPath()) "Audio$(Get-Random).mp3"
154-
Join-Path ([IO.Path]::GetTempPath()) "Audio$(Get-Random).wav"
155-
Join-Path ([IO.Path]::GetTempPath()) "JoinedAudio$(Get-Random).mp3"
153+
Join-Path "$pwd" "Audio$(Get-Random).mp3"
154+
Join-Path "$pwd" "Audio$(Get-Random).wav"
155+
Join-Path "$pwd" "JoinedAudio$(Get-Random).mp3"
156156
)
157157

158158
@(
@@ -178,12 +178,12 @@ describe Join-Media {
178178
it 'Can make a timelapse from a series of images' {
179179
$tmpOutPaths =
180180
foreach ($n in 1..30) {
181-
Join-Path ([IO.Path]::GetTempPath()) "lapsePart$(Get-Random).jpg"
181+
Join-Path "$pwd" "lapsePart$(Get-Random).jpg"
182182
}
183183

184184
$newImages = $tmpOutPaths | New-Media -OutputPath { $_ } -TestSource rgbtestsrc
185185

186-
$lapseOutPath = Join-Path ([IO.Path]::GetTempPath()) "lapse$(Get-Random).mp4"
186+
$lapseOutPath = Join-Path "$pwd" "lapse$(Get-Random).mp4"
187187
$lapseFile = $newImages | Join-Media -OutputPath $lapseOutPath -TimeLapse
188188
$lapseFile | Get-Media | Select-Object -ExpandProperty Duration | Should -BeLike '00:00:01*'
189189

@@ -194,7 +194,7 @@ describe Join-Media {
194194

195195
describe New-Media {
196196
it 'Can create A test source' {
197-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "testsrc2$(Get-Random).mp4"
197+
$tmpOutPath = Join-Path "$pwd" "testsrc2$(Get-Random).mp4"
198198
New-Media -TestSource testsrc2 -OutputPath $tmpOutPath -Duration "00:00:05" |
199199
Get-Media |
200200
Select-Object -ExpandProperty Duration |
@@ -204,7 +204,7 @@ describe New-Media {
204204
}
205205

206206
it 'Can create audio' {
207-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).mp3"
207+
$tmpOutPath = Join-Path "$pwd" "sine$(Get-Random).mp3"
208208
New-Media -Sine -OutputPath $tmpOutPath -Duration "00:00:05" |
209209
Get-Media |
210210
Select-Object -ExpandProperty Duration |
@@ -213,7 +213,7 @@ describe New-Media {
213213
}
214214

215215
it 'Can make a fractal' {
216-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "mandelbrot$(Get-Random).mp4"
216+
$tmpOutPath = Join-Path "$pwd" "mandelbrot$(Get-Random).mp4"
217217
New-Media -Mandelbrot -OutputPath $tmpOutPath -Duration "00:00:05" |
218218
Get-Media |
219219
Select-Object -ExpandProperty Duration |
@@ -227,7 +227,7 @@ describe New-Media {
227227

228228
describe Set-Media {
229229
it 'Can set media metadata' {
230-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).wav"
230+
$tmpOutPath = Join-Path "$pwd" "sine$(Get-Random).wav"
231231
$tmpMp3Path = $tmpOutPath -replace '\.wav$', '.mp3'
232232
$convertedToMp3 = New-Media -Sine -OutputPath $tmpOutPath -Duration "00:00:05" |
233233
Convert-Media -OutputPath $tmpMp3Path
@@ -243,8 +243,8 @@ describe Set-Media {
243243
}
244244

245245
it 'Can set album artwork' {
246-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).mp3"
247-
$tmpOutPath2 = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).jpg"
246+
$tmpOutPath = Join-Path "$pwd" "sine$(Get-Random).mp3"
247+
$tmpOutPath2 = Join-Path "$pwd" "sine$(Get-Random).jpg"
248248
New-Media -TestSource rgbtestsrc -OutputPath $tmpOutPath2
249249
New-Media -Sine -OutputPath $tmpOutPath -Duration "00:00:05" |
250250
Set-Media -AlbumArt $tmpOutPath2
@@ -259,7 +259,7 @@ describe Set-Media {
259259

260260
describe Split-Media {
261261
it 'Can Split on a timespan' {
262-
$tmpOutPath = Join-Path ([IO.Path]::GetTempPath()) "sine$(Get-Random).mp3"
262+
$tmpOutPath = Join-Path "$pwd" "sine$(Get-Random).mp3"
263263
New-Media -Sine -OutputPath $tmpOutPath -Duration "00:00:05" |
264264
Split-Media -Start "00:00:02.1230300" |
265265
Get-Media |

0 commit comments

Comments
 (0)