Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 747d2f6

Browse files
author
Eduardo Lopez
authored
Fix template encoding + add test #18
1 parent c01613c commit 747d2f6

File tree

2 files changed

+50
-10
lines changed

2 files changed

+50
-10
lines changed

pkg/provider/data_lambda.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ package provider
33
import (
44
"archive/zip"
55
"bytes"
6-
"html/template"
76
"io"
87
"io/ioutil"
98
"os"
109
"path"
1110
"path/filepath"
1211
"sort"
12+
"text/template"
1313

1414
"github.com/chanzuckerberg/terraform-provider-bless/pkg/util"
1515
"github.com/gobuffalo/packr"
@@ -189,13 +189,13 @@ func (l *resourceLambda) getBlessConfig(d *schema.ResourceData) (io.Reader, erro
189189
return nil, errors.Wrap(err, "Could not load template")
190190
}
191191
blessConfig := blessConfig{
192-
Name: d.Get(schemaServiceName).(string),
193-
LoggingLevel: d.Get(schemaLoggingLevel).(string),
194-
UsernameValidation: d.Get(schemaUsernameValidation).(string),
195-
EncryptedPassword: d.Get(schemaEncryptedPassword).(string),
196-
EncryptedPrivateKey: d.Get(schemaEncryptedPrivateKey).(string),
197-
KMSAuthKeyID: d.Get(schemaKMSAuthKeyID).(string),
198-
KMSAuthRemoteUsernamesAllowed: d.Get(schemaKMSAuthRemoteUsernamesAllowed).(string),
192+
Name: d.Get(schemaServiceName).(string),
193+
LoggingLevel: d.Get(schemaLoggingLevel).(string),
194+
UsernameValidation: d.Get(schemaUsernameValidation).(string),
195+
EncryptedPassword: d.Get(schemaEncryptedPassword).(string),
196+
EncryptedPrivateKey: d.Get(schemaEncryptedPrivateKey).(string),
197+
KMSAuthKeyID: d.Get(schemaKMSAuthKeyID).(string),
198+
KMSAuthRemoteUsernamesAllowed: d.Get(schemaKMSAuthRemoteUsernamesAllowed).(string),
199199
KMSAuthValidateRemoteUsernameAgainstIAMGroups: d.Get(schemaKMSAuthValidateRemoteUsernameAgainstIAMGroups).(bool),
200200
KMSAuthIAMGroupNameFormat: d.Get(schemaKMSAuthIAMGroupNameFormat).(string),
201201
}

pkg/provider/data_lambda_test.go

+42-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package provider_test
22

33
import (
4+
"archive/zip"
5+
"bufio"
6+
"strings"
47
"testing"
58

69
r "github.com/hashicorp/terraform/helper/resource"
@@ -24,15 +27,15 @@ func TestLambdaCreate(t *testing.T) {
2427
2528
data "bless_lambda" "zip" {
2629
encrypted_ca = "aaaa"
27-
encrypted_password = "bbbb"
30+
encrypted_password = "bb+bb"
2831
service_name = "test"
2932
kmsauth_key_id = "keyID"
3033
output_path = "/tmp/test.zip"
3134
}
3235
3336
data "bless_lambda" "zip2" {
3437
encrypted_ca = "aaaa"
35-
encrypted_password = "bbbb"
38+
encrypted_password = "bb+bb"
3639
service_name = "test"
3740
kmsauth_key_id = "keyID"
3841
output_path = "/tmp/test2.zip"
@@ -52,6 +55,8 @@ func TestLambdaCreate(t *testing.T) {
5255
a.NotEmpty(output1)
5356
a.NotEmpty(output2)
5457
// Check hashes are equal
58+
59+
validateBlessConfig(t, "/tmp/test.zip")
5560
a.Equal(output1, output2)
5661
return nil
5762
},
@@ -102,3 +107,38 @@ func TestLambdaCreate(t *testing.T) {
102107
},
103108
})
104109
}
110+
111+
func validateBlessConfig(t *testing.T, zipPath string) {
112+
a := assert.New(t)
113+
114+
r, err := zip.OpenReader(zipPath)
115+
a.Nil(err)
116+
defer r.Close()
117+
118+
configFound := false
119+
privateKeyFound := false
120+
121+
for _, f := range r.File {
122+
if f.Name != "bless_deploy.cfg" {
123+
continue
124+
}
125+
configFound = true
126+
fc, err := f.Open()
127+
a.Nil(err)
128+
defer fc.Close()
129+
scanner := bufio.NewScanner(fc)
130+
131+
for scanner.Scan() {
132+
if strings.Contains(scanner.Text(), "bb+bb") {
133+
privateKeyFound = true
134+
break
135+
}
136+
}
137+
a.Nil(scanner.Err())
138+
139+
break // Found the config file
140+
}
141+
142+
a.True(configFound)
143+
a.True(privateKeyFound)
144+
}

0 commit comments

Comments
 (0)