mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-27 12:51:25 -07:00
Add integration tests for binary modules
This commit is contained in:
parent
35246abb2e
commit
6ad8ec0919
5 changed files with 141 additions and 0 deletions
|
@ -284,3 +284,9 @@ test_lookup_paths: setup
|
||||||
no_log: setup
|
no_log: setup
|
||||||
# This test expects 7 loggable vars and 0 non loggable ones, if either mismatches it fails, run the ansible-playbook command to debug
|
# This test expects 7 loggable vars and 0 non loggable ones, if either mismatches it fails, run the ansible-playbook command to debug
|
||||||
[ "$$(ansible-playbook no_log_local.yml -i $(INVENTORY) -e outputdir=$(TEST_DIR) -vvvvv | awk --source 'BEGIN { logme = 0; nolog = 0; } /LOG_ME/ { logme += 1;} /DO_NOT_LOG/ { nolog += 1;} END { printf "%d/%d", logme, nolog; }')" = "6/0" ]
|
[ "$$(ansible-playbook no_log_local.yml -i $(INVENTORY) -e outputdir=$(TEST_DIR) -vvvvv | awk --source 'BEGIN { logme = 0; nolog = 0; } /LOG_ME/ { logme += 1;} /DO_NOT_LOG/ { nolog += 1;} END { printf "%d/%d", logme, nolog; }')" = "6/0" ]
|
||||||
|
|
||||||
|
test_binary_modules:
|
||||||
|
cd library && GOOS=linux GOARCH=amd64 go build -o helloworld_linux helloworld.go
|
||||||
|
cd library && GOOS=windows GOARCH=amd64 go build -o helloworld_win32nt.exe helloworld.go
|
||||||
|
cd library && GOOS=darwin GOARCH=amd64 go build -o helloworld_darwin helloworld.go
|
||||||
|
ansible-playbook test_binary_modules.yml -i $(INVENTORY) -v $(TEST_FLAGS)
|
||||||
|
|
1
test/integration/library/.gitignore
vendored
Normal file
1
test/integration/library/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
helloworld_*
|
74
test/integration/library/helloworld.go
Normal file
74
test/integration/library/helloworld.go
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ModuleArgs struct {
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
|
||||||
|
type Response struct {
|
||||||
|
Msg string `json:"msg"`
|
||||||
|
Changed bool `json:"changed"`
|
||||||
|
Failed bool `json:"failed"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func ExitJson(responseBody Response) {
|
||||||
|
returnResponse(responseBody)
|
||||||
|
}
|
||||||
|
|
||||||
|
func FailJson(responseBody Response) {
|
||||||
|
responseBody.Failed = true
|
||||||
|
returnResponse(responseBody)
|
||||||
|
}
|
||||||
|
|
||||||
|
func returnResponse(responseBody Response) {
|
||||||
|
var response []byte
|
||||||
|
var err error
|
||||||
|
response, err = json.Marshal(responseBody)
|
||||||
|
if err != nil {
|
||||||
|
response, _ = json.Marshal(Response{Msg: "Invalid response object"})
|
||||||
|
}
|
||||||
|
fmt.Println(string(response))
|
||||||
|
if responseBody.Failed {
|
||||||
|
os.Exit(1)
|
||||||
|
} else {
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
var response Response
|
||||||
|
|
||||||
|
if len(os.Args) != 2 {
|
||||||
|
response.Msg = "No argument file provided"
|
||||||
|
FailJson(response)
|
||||||
|
}
|
||||||
|
|
||||||
|
argsFile := os.Args[1]
|
||||||
|
|
||||||
|
text, err := ioutil.ReadFile(argsFile)
|
||||||
|
if err != nil {
|
||||||
|
response.Msg = "Could not read configuration file: " + argsFile
|
||||||
|
FailJson(response)
|
||||||
|
}
|
||||||
|
|
||||||
|
var moduleArgs ModuleArgs
|
||||||
|
err = json.Unmarshal(text, &moduleArgs)
|
||||||
|
if err != nil {
|
||||||
|
response.Msg = "Configuration file not valid JSON: " + argsFile
|
||||||
|
FailJson(response)
|
||||||
|
}
|
||||||
|
|
||||||
|
var name string = "World"
|
||||||
|
if moduleArgs.Name != "" {
|
||||||
|
name = moduleArgs.Name
|
||||||
|
}
|
||||||
|
|
||||||
|
response.Msg = "Hello, " + name + "!"
|
||||||
|
ExitJson(response)
|
||||||
|
}
|
54
test/integration/roles/test_binary_modules/tasks/main.yml
Normal file
54
test/integration/roles/test_binary_modules/tasks/main.yml
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
- debug: var=ansible_system
|
||||||
|
|
||||||
|
- name: ping
|
||||||
|
ping:
|
||||||
|
when: ansible_system != 'Win32NT'
|
||||||
|
|
||||||
|
- name: win_ping
|
||||||
|
win_ping:
|
||||||
|
when: ansible_system == 'Win32NT'
|
||||||
|
|
||||||
|
- name: Hello, World!
|
||||||
|
action: "helloworld_{{ ansible_system|lower }}"
|
||||||
|
register: hello_world
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'hello_world.msg == "Hello, World!"'
|
||||||
|
|
||||||
|
- name: Hello, Ansible!
|
||||||
|
action: "helloworld_{{ ansible_system|lower }}"
|
||||||
|
args:
|
||||||
|
name: Ansible
|
||||||
|
register: hello_ansible
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'hello_ansible.msg == "Hello, Ansible!"'
|
||||||
|
|
||||||
|
- name: Async Hello, World!
|
||||||
|
action: "helloworld_{{ ansible_system|lower }}"
|
||||||
|
async: 1
|
||||||
|
poll: 1
|
||||||
|
when: ansible_system != 'Win32NT'
|
||||||
|
register: async_hello_world
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'async_hello_world.msg == "Hello, World!"'
|
||||||
|
when: not async_hello_world|skipped
|
||||||
|
|
||||||
|
- name: Async Hello, Ansible!
|
||||||
|
action: "helloworld_{{ ansible_system|lower }}"
|
||||||
|
args:
|
||||||
|
name: Ansible
|
||||||
|
async: 1
|
||||||
|
poll: 1
|
||||||
|
when: ansible_system != 'Win32NT'
|
||||||
|
register: async_hello_ansible
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- 'async_hello_ansible.msg == "Hello, Ansible!"'
|
||||||
|
when: not async_hello_ansible|skipped
|
||||||
|
|
6
test/integration/test_binary_modules.yml
Normal file
6
test/integration/test_binary_modules.yml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
- hosts: all
|
||||||
|
roles:
|
||||||
|
- role: test_binary_modules
|
||||||
|
tags:
|
||||||
|
- test_binary_modules
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue