-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support multiple links in the
tmt link
command (#3309)
In order to make the syntax consistent with the `tmt test create` command and to allow providing multiple links in a single command let's use a ``--link`` option instead of the first argument for provide the `relation:target` pairs.
- Loading branch information
Showing
5 changed files
with
60 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
summary: Check basic functionality of the tmt link command | ||
description: | ||
Make sure that `tmt test create` and `tmt link` add provided | ||
target link to the test metadata. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
. /usr/share/beakerlib/beakerlib.sh || exit 1 | ||
|
||
rlJournalStart | ||
rlPhaseStartSetup | ||
rlRun "tmp=\$(mktemp -d)" 0 "Create a tmp directory" | ||
rlRun "pushd $tmp" | ||
rlRun "tmt init" | ||
rlPhaseEnd | ||
|
||
rlPhaseStartTest "Create Test" | ||
rlRun "tmt test create /test/created --template shell --link verifies:/feature/one" | ||
rlRun -s "tmt test show /test/created" | ||
rlAssertGrep "verifies /feature/one" $rlRun_LOG | ||
rlPhaseEnd | ||
|
||
rlPhaseStartTest "Existing Test" | ||
rlRun "tmt test create /test/existing --template shell" | ||
rlRun "tmt link /test/existing --link verifies:/feature/two" | ||
rlRun "tmt link /test/existing --link verifies:/feature/three" | ||
rlRun -s "tmt test show /test/existing" | ||
rlAssertGrep "verifies /feature/two" $rlRun_LOG | ||
rlAssertGrep "verifies /feature/three" $rlRun_LOG | ||
rlPhaseEnd | ||
|
||
rlPhaseStartTest "No Link Provided" | ||
rlRun -s "tmt link /test/existing" 2 | ||
rlAssertGrep "Provide at least one link" $rlRun_LOG | ||
rlPhaseEnd | ||
|
||
rlPhaseStartCleanup | ||
rlRun "popd" | ||
rlRun "rm -r $tmp" 0 "Remove the tmp directory" | ||
rlPhaseEnd | ||
rlJournalEnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters