| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // Copyright 2019 Yunion
- //
- // 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.
- package ansible
- import (
- "bytes"
- "context"
- "os/exec"
- "reflect"
- "testing"
- )
- func skipIfNoAnsible(t *testing.T) {
- _, err := exec.LookPath("ansible")
- if err != nil {
- t.Skipf("looking for ansible: %v", err)
- }
- }
- func TestPlaybook(t *testing.T) {
- skipIfNoAnsible(t)
- pb := NewPlaybook()
- pb.Inventory = Inventory{
- Hosts: []Host{
- {
- Name: "127.0.0.1",
- Vars: map[string]string{
- "ansible_connection": "local",
- },
- },
- },
- }
- pb.Modules = []Module{
- {
- Name: "ping",
- },
- {
- Name: "copy",
- Args: []string{
- "src=afile",
- "dest=/tmp/afile",
- },
- },
- {
- Name: "copy",
- Args: []string{
- "src=adir/afile",
- "dest=/tmp/adirfile",
- },
- },
- }
- pb.Files = map[string][]byte{
- "afile": []byte("afilecontent"),
- "adir/afile": []byte("afilecontent under adir"),
- }
- t.Run("copy", func(t *testing.T) {
- pb2 := pb.Copy()
- if !reflect.DeepEqual(pb2, pb) {
- t.Errorf("copy and the original should be equal")
- }
- })
- t.Run("run", func(t *testing.T) {
- b := &bytes.Buffer{}
- pb.OutputWriter(b)
- err := pb.Run(context.TODO())
- t.Logf("%s", b.String())
- if err != nil {
- t.Fatalf("not expecting err: %v", err)
- }
- })
- }
|