Skip to content

Commit

Permalink
utils: Add a test for ProcessCapture
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Feb 19, 2019
1 parent 5c9dfc2 commit 25c203c
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions utils/src/test/kotlin/ProcessCaptureTest.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/*
* Copyright (C) 2017-2019 HERE Europe B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
* License-Filename: LICENSE
*/

package com.here.ort.utils

import io.kotlintest.shouldBe
import io.kotlintest.specs.StringSpec

class ProcessCaptureTest : StringSpec({
"Environment variables should be passed correctly" {
val env = mapOf("PREFIX" to "This is some path: ", "SOME_PATH" to "/foo/bar")
val proc = if (OS.isWindows) {
ProcessCapture("cmd.exe", "/c", "echo %PREFIX%%SOME_PATH%", environment = env)
} else {
ProcessCapture("sh", "-c", "echo \$PREFIX\$SOME_PATH", environment = env)
}

proc.exitValue shouldBe 0
proc.stdout.trimEnd() shouldBe "This is some path: /foo/bar"
}
})

0 comments on commit 25c203c

Please sign in to comment.