-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use stdin to send the password to ansible-vault command #359
Open
ltamaster
wants to merge
7
commits into
main
Choose a base branch
from
vault-encrypt-using-stdin
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6641489
use stdin to send the password to ansible-vault command
ltamaster f283419
use a file to check prompt
ltamaster c7098be
fix password script
ltamaster aa5f07d
clean
ltamaster 5ded806
add timeout for ansible vault prompt
ltamaster 21d9908
improve clean up process in AnsibleVault
ltamaster 3061048
improve wait for prompt
ltamaster File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
52 changes: 52 additions & 0 deletions
52
src/test/groovy/com/rundeck/plugins/ansible/ansible/AnsibleVaultSpec.groovy
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,52 @@ | ||
package com.rundeck.plugins.ansible.ansible | ||
|
||
import com.rundeck.plugins.ansible.util.ProcessExecutor | ||
import spock.lang.Specification | ||
|
||
import java.nio.file.Path | ||
|
||
class AnsibleVaultSpec extends Specification{ | ||
|
||
def "prompt message not found finished with timeout"() { | ||
given: | ||
|
||
def process = Mock(Process){ | ||
waitFor() >> 0 | ||
getInputStream()>> new ByteArrayInputStream("".getBytes()) | ||
getOutputStream() >> new ByteArrayOutputStream() | ||
getErrorStream() >> new ByteArrayInputStream("".getBytes()) | ||
} | ||
|
||
def processExecutor = Mock(ProcessExecutor){ | ||
run()>>process | ||
} | ||
|
||
def processBuilder = Mock(ProcessExecutor.ProcessExecutorBuilder){ | ||
build() >> processExecutor | ||
} | ||
|
||
File passwordScript = File.createTempFile("password", ".python") | ||
Path baseDirectory = Path.of(passwordScript.getParentFile().getPath()) | ||
|
||
when: | ||
def vault = AnsibleVault.builder() | ||
.processExecutorBuilder(processBuilder) | ||
.vaultPasswordScriptFile(passwordScript) | ||
.baseDirectory(baseDirectory) | ||
.build() | ||
|
||
def key = "password" | ||
def content = "1234" | ||
def result = vault.encryptVariable(key, content) | ||
|
||
then: | ||
1* processBuilder.procArgs(_) >> processBuilder | ||
1* processBuilder.baseDirectory(_) >> processBuilder | ||
1* processBuilder.environmentVariables(_) >> processBuilder | ||
1* processBuilder.redirectErrorStream(_) >> processBuilder | ||
|
||
def e = thrown(RuntimeException) | ||
e.message.contains("Failed to find prompt for ansible-vault") | ||
} | ||
|
||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want this to be re-used across invocations of methods? Perhaps this should be an instance variable in each method? This appears to be an intentional change, just not sure why we need it. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just added that to mock it in the test