2021-09-22 11:14:22 +03:00
|
|
|
package utils_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
2022-03-04 05:43:09 +03:00
|
|
|
"github.com/Azure/terraform-provider-azapi/utils"
|
2021-09-22 11:14:22 +03:00
|
|
|
)
|
|
|
|
|
2023-08-08 09:00:46 +03:00
|
|
|
func Test_UpdateObject(t *testing.T) {
|
2022-02-15 09:47:58 +03:00
|
|
|
testcases := []struct {
|
|
|
|
OldJson string
|
|
|
|
NewJson string
|
|
|
|
ExpectJson string
|
|
|
|
Option utils.UpdateJsonOption
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
OldJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"compression": "None",
|
|
|
|
"consumerGroup": "acctesteventhubcg",
|
|
|
|
"dataFormat": "",
|
|
|
|
"eventHubResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.EventHub/namespaces/acctesteventhubnamespace/eventhubs/acctesteventhub",
|
|
|
|
"eventSystemProperties": [],
|
|
|
|
"managedIdentityResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acctest924",
|
|
|
|
"mappingRuleName": "",
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"tableName": ""
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
NewJson: `
|
|
|
|
{
|
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.Kusto/Clusters/acctestkc924/Databases/acctestkd/DataConnections/acctestkedc",
|
|
|
|
"kind": "EventHub",
|
|
|
|
"location": "West Europe",
|
|
|
|
"name": "acctestkc924/acctestkd/acctestkedc",
|
|
|
|
"properties": {
|
|
|
|
"compression": "None",
|
|
|
|
"dataFormat": "",
|
|
|
|
"eventHubResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/RESOURCEGROUPS/acctestRG924/providers/Microsoft.EventHub/namespaces/acctesteventhubnamespace/eventhubs/acctesteventhub",
|
|
|
|
"eventSystemProperties": [],
|
|
|
|
"managedIdentityResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acctest924",
|
|
|
|
"mappingRuleName": "",
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"tableName": ""
|
|
|
|
},
|
|
|
|
"type": "Microsoft.Kusto/Clusters/Databases/DataConnections"
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"compression": "None",
|
|
|
|
"consumerGroup": "acctesteventhubcg",
|
|
|
|
"dataFormat": "",
|
|
|
|
"eventHubResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.EventHub/namespaces/acctesteventhubnamespace/eventhubs/acctesteventhub",
|
|
|
|
"eventSystemProperties": [],
|
|
|
|
"managedIdentityResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acctest924",
|
|
|
|
"mappingRuleName": "",
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"tableName": ""
|
|
|
|
}
|
|
|
|
}
|
2023-03-24 06:34:52 +03:00
|
|
|
`,
|
|
|
|
Option: utils.UpdateJsonOption{
|
|
|
|
IgnoreMissingProperty: true,
|
|
|
|
IgnoreCasing: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
OldJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"sshPrivateKey": "asdf"
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
NewJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"sshPrivateKey": "<redacted>"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
ExpectJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"sshPrivateKey": "asdf"
|
|
|
|
}
|
|
|
|
}
|
2022-02-15 09:47:58 +03:00
|
|
|
`,
|
|
|
|
Option: utils.UpdateJsonOption{
|
|
|
|
IgnoreMissingProperty: true,
|
|
|
|
IgnoreCasing: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testcase := range testcases {
|
|
|
|
var new, old, expected interface{}
|
|
|
|
_ = json.Unmarshal([]byte(testcase.OldJson), &old)
|
|
|
|
_ = json.Unmarshal([]byte(testcase.NewJson), &new)
|
|
|
|
_ = json.Unmarshal([]byte(testcase.ExpectJson), &expected)
|
|
|
|
|
2023-08-08 09:00:46 +03:00
|
|
|
result := utils.UpdateObject(old, new, testcase.Option)
|
2022-02-15 09:47:58 +03:00
|
|
|
if !reflect.DeepEqual(result, expected) {
|
|
|
|
expectedJson, _ := json.Marshal(expected)
|
|
|
|
resultJson, _ := json.Marshal(result)
|
|
|
|
t.Fatalf("Expected %s but got %s", expectedJson, resultJson)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-08 09:00:46 +03:00
|
|
|
func Test_MergeObject(t *testing.T) {
|
2021-09-22 11:14:22 +03:00
|
|
|
oldJson := `
|
|
|
|
{
|
|
|
|
"a":1,
|
|
|
|
"b": {
|
|
|
|
"b1": "b1",
|
|
|
|
"b2": []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
newJson := `
|
|
|
|
{
|
|
|
|
"b": {
|
|
|
|
"b3": "b3"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
expectedJson := `
|
|
|
|
{
|
|
|
|
"a":1,
|
|
|
|
"b": {
|
|
|
|
"b1": "b1",
|
|
|
|
"b2": [],
|
|
|
|
"b3": "b3"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
var new, old, expected interface{}
|
2021-11-09 09:13:57 +03:00
|
|
|
_ = json.Unmarshal([]byte(oldJson), &old)
|
|
|
|
_ = json.Unmarshal([]byte(newJson), &new)
|
|
|
|
_ = json.Unmarshal([]byte(expectedJson), &expected)
|
2021-09-22 11:14:22 +03:00
|
|
|
|
2023-08-08 09:00:46 +03:00
|
|
|
result := utils.MergeObject(old, new)
|
2021-11-12 06:41:38 +03:00
|
|
|
if !reflect.DeepEqual(result, expected) {
|
|
|
|
expectedJson, _ := json.Marshal(expected)
|
|
|
|
resultJson, _ := json.Marshal(result)
|
|
|
|
t.Fatalf("Expected %s but got %s", expectedJson, resultJson)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-08 09:00:46 +03:00
|
|
|
func Test_MergeObjectWithArray(t *testing.T) {
|
2021-11-12 06:41:38 +03:00
|
|
|
oldJson := `
|
|
|
|
{
|
2021-11-17 07:15:12 +03:00
|
|
|
"name": "mylb",
|
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb",
|
2021-11-12 06:41:38 +03:00
|
|
|
"etag": "W/\"0074bc84-d75b-4496-96c8-c858e0ef0afe\"",
|
|
|
|
"type": "Microsoft.Network/loadBalancers",
|
|
|
|
"location": "westus",
|
|
|
|
"tags": {},
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"resourceGuid": "0a6d40b0-4f2e-4582-9bb8-cda0e3f8099a",
|
|
|
|
"frontendIPConfigurations": [
|
|
|
|
{
|
|
|
|
"name": "PublicIPAddress",
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/PublicIPAddress",
|
2021-11-12 06:41:38 +03:00
|
|
|
"etag": "W/\"0074bc84-d75b-4496-96c8-c858e0ef0afe\"",
|
|
|
|
"type": "Microsoft.Network/loadBalancers/frontendIPConfigurations",
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"privateIPAllocationMethod": "Dynamic",
|
|
|
|
"publicIPAddress": {
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/publicIPAddresses/myip"
|
2021-11-12 06:41:38 +03:00
|
|
|
},
|
|
|
|
"inboundNatRules": [
|
|
|
|
{
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/RDPAccess"
|
2021-11-12 06:41:38 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"backendAddressPools": [],
|
|
|
|
"loadBalancingRules": [],
|
|
|
|
"probes": [],
|
|
|
|
"inboundNatRules": [
|
|
|
|
{
|
|
|
|
"name": "RDPAccess",
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/RDPAccess",
|
2021-11-12 06:41:38 +03:00
|
|
|
"etag": "W/\"0074bc84-d75b-4496-96c8-c858e0ef0afe\"",
|
|
|
|
"type": "Microsoft.Network/loadBalancers/inboundNatRules",
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"frontendIPConfiguration": {
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/PublicIPAddress"
|
2021-11-12 06:41:38 +03:00
|
|
|
},
|
|
|
|
"frontendPort": 3389,
|
|
|
|
"backendPort": 3389,
|
|
|
|
"enableFloatingIP": false,
|
|
|
|
"protocol": "Tcp",
|
|
|
|
"enableDestinationServiceEndpoint": false,
|
|
|
|
"enableTcpReset": false,
|
|
|
|
"allowBackendPortConflict": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"inboundNatPools": []
|
|
|
|
},
|
|
|
|
"sku": {
|
|
|
|
"name": "Basic",
|
|
|
|
"tier": "Regional"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
newJson := `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"inboundNatRules": [
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"idleTimeoutInMinutes": 15
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
expectedJson := `
|
|
|
|
{
|
2021-11-17 07:15:12 +03:00
|
|
|
"name": "mylb",
|
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb",
|
2021-11-12 06:41:38 +03:00
|
|
|
"etag": "W/\"0074bc84-d75b-4496-96c8-c858e0ef0afe\"",
|
|
|
|
"type": "Microsoft.Network/loadBalancers",
|
|
|
|
"location": "westus",
|
|
|
|
"tags": {},
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"resourceGuid": "0a6d40b0-4f2e-4582-9bb8-cda0e3f8099a",
|
|
|
|
"frontendIPConfigurations": [
|
|
|
|
{
|
|
|
|
"name": "PublicIPAddress",
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/PublicIPAddress",
|
2021-11-12 06:41:38 +03:00
|
|
|
"etag": "W/\"0074bc84-d75b-4496-96c8-c858e0ef0afe\"",
|
|
|
|
"type": "Microsoft.Network/loadBalancers/frontendIPConfigurations",
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"privateIPAllocationMethod": "Dynamic",
|
|
|
|
"publicIPAddress": {
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/publicIPAddresses/myip"
|
2021-11-12 06:41:38 +03:00
|
|
|
},
|
|
|
|
"inboundNatRules": [
|
|
|
|
{
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/RDPAccess"
|
2021-11-12 06:41:38 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"backendAddressPools": [],
|
|
|
|
"loadBalancingRules": [],
|
|
|
|
"probes": [],
|
|
|
|
"inboundNatRules": [
|
|
|
|
{
|
|
|
|
"name": "RDPAccess",
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb/inboundNatRules/RDPAccess",
|
2021-11-12 06:41:38 +03:00
|
|
|
"etag": "W/\"0074bc84-d75b-4496-96c8-c858e0ef0afe\"",
|
|
|
|
"type": "Microsoft.Network/loadBalancers/inboundNatRules",
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"frontendIPConfiguration": {
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-00000000000/resourceGroups/rg/providers/Microsoft.Network/loadBalancers/mylb/frontendIPConfigurations/PublicIPAddress"
|
2021-11-12 06:41:38 +03:00
|
|
|
},
|
|
|
|
"frontendPort": 3389,
|
|
|
|
"backendPort": 3389,
|
|
|
|
"enableFloatingIP": false,
|
|
|
|
"idleTimeoutInMinutes": 15,
|
|
|
|
"protocol": "Tcp",
|
|
|
|
"enableDestinationServiceEndpoint": false,
|
|
|
|
"enableTcpReset": false,
|
|
|
|
"allowBackendPortConflict": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"inboundNatPools": []
|
|
|
|
},
|
|
|
|
"sku": {
|
|
|
|
"name": "Basic",
|
|
|
|
"tier": "Regional"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
var new, old, expected interface{}
|
|
|
|
_ = json.Unmarshal([]byte(oldJson), &old)
|
|
|
|
_ = json.Unmarshal([]byte(newJson), &new)
|
|
|
|
_ = json.Unmarshal([]byte(expectedJson), &expected)
|
|
|
|
|
2023-08-08 09:00:46 +03:00
|
|
|
result := utils.MergeObject(old, new)
|
2021-09-22 11:14:22 +03:00
|
|
|
if !reflect.DeepEqual(result, expected) {
|
|
|
|
expectedJson, _ := json.Marshal(expected)
|
|
|
|
resultJson, _ := json.Marshal(result)
|
|
|
|
t.Fatalf("Expected %s but got %s", expectedJson, resultJson)
|
|
|
|
}
|
|
|
|
}
|
2021-10-21 10:01:00 +03:00
|
|
|
|
|
|
|
func Test_ExtractObject(t *testing.T) {
|
|
|
|
oldJson := `
|
|
|
|
{
|
2021-11-17 07:15:12 +03:00
|
|
|
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.Kusto/Clusters/acctestkc924/Databases/acctestkd/DataConnections/acctestkedc",
|
2021-10-21 10:01:00 +03:00
|
|
|
"kind": "EventHub",
|
|
|
|
"location": "West Europe",
|
2021-11-17 07:15:12 +03:00
|
|
|
"name": "acctestkc924/acctestkd/acctestkedc",
|
2021-10-21 10:01:00 +03:00
|
|
|
"properties": {
|
|
|
|
"compression": "None",
|
2021-11-17 07:15:12 +03:00
|
|
|
"consumerGroup": "acctesteventhubcg",
|
2021-10-21 10:01:00 +03:00
|
|
|
"dataFormat": "",
|
2021-11-17 07:15:12 +03:00
|
|
|
"eventHubResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.EventHub/namespaces/acctesteventhubnamespace/eventhubs/acctesteventhub",
|
2021-10-21 10:01:00 +03:00
|
|
|
"eventSystemProperties": [],
|
2021-11-17 07:15:12 +03:00
|
|
|
"managedIdentityResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG924/providers/Microsoft.ManagedIdentity/userAssignedIdentities/acctest924",
|
2021-10-21 10:01:00 +03:00
|
|
|
"mappingRuleName": "",
|
|
|
|
"provisioningState": "Succeeded",
|
|
|
|
"tableName": ""
|
|
|
|
},
|
|
|
|
"type": "Microsoft.Kusto/Clusters/Databases/DataConnections"
|
|
|
|
}
|
|
|
|
`
|
|
|
|
expectedJson := `
|
|
|
|
{
|
|
|
|
"properties": {
|
2021-11-17 07:15:12 +03:00
|
|
|
"consumerGroup": "acctesteventhubcg"
|
2021-10-21 10:01:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
var old, expected interface{}
|
2021-11-09 09:13:57 +03:00
|
|
|
_ = json.Unmarshal([]byte(oldJson), &old)
|
|
|
|
_ = json.Unmarshal([]byte(expectedJson), &expected)
|
2021-10-21 10:01:00 +03:00
|
|
|
|
|
|
|
result := utils.ExtractObject(old, "properties.consumerGroup")
|
|
|
|
if !reflect.DeepEqual(result, expected) {
|
|
|
|
expectedJson, _ := json.Marshal(expected)
|
|
|
|
resultJson, _ := json.Marshal(result)
|
|
|
|
t.Fatalf("Expected %s but got %s", expectedJson, resultJson)
|
|
|
|
}
|
|
|
|
|
|
|
|
// invalid path
|
|
|
|
result = utils.ExtractObject(old, "properties.consumerGroup1")
|
|
|
|
if result != nil {
|
|
|
|
resultJson, _ := json.Marshal(result)
|
|
|
|
t.Fatalf("Expected nil but got %s", resultJson)
|
|
|
|
}
|
|
|
|
}
|
2023-08-08 09:00:46 +03:00
|
|
|
|
|
|
|
func Test_OverrideWithPaths(t *testing.T) {
|
|
|
|
testcases := []struct {
|
|
|
|
OldJson string
|
|
|
|
NewJson string
|
|
|
|
ExpectJson string
|
|
|
|
IgnoreChanges []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
OldJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Foo",
|
|
|
|
"subnets": [
|
|
|
|
{
|
|
|
|
"name": "default",
|
|
|
|
"value": "foo"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
NewJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Bar",
|
|
|
|
"subnets": [
|
|
|
|
{
|
|
|
|
"name": "default",
|
|
|
|
"value": "foo"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "spin-app-subnet",
|
|
|
|
"id": "bar"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
ExpectJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Foo",
|
|
|
|
"subnets": [
|
|
|
|
{
|
|
|
|
"name": "default",
|
|
|
|
"value": "foo"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "spin-app-subnet",
|
|
|
|
"id": "bar"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
IgnoreChanges: []string{"properties.subnets"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
OldJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Foo"
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
NewJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Bar"
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
ExpectJson: `
|
|
|
|
{
|
|
|
|
"properties": {
|
|
|
|
"provisioningState": "Bar"
|
|
|
|
}
|
|
|
|
}`,
|
|
|
|
IgnoreChanges: []string{"properties.provisioningState"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testcase := range testcases {
|
|
|
|
var new, old, expected interface{}
|
|
|
|
_ = json.Unmarshal([]byte(testcase.OldJson), &old)
|
|
|
|
_ = json.Unmarshal([]byte(testcase.NewJson), &new)
|
|
|
|
_ = json.Unmarshal([]byte(testcase.ExpectJson), &expected)
|
|
|
|
|
|
|
|
pathSet := make(map[string]bool)
|
|
|
|
for _, path := range testcase.IgnoreChanges {
|
|
|
|
pathSet[path] = true
|
|
|
|
}
|
|
|
|
result, err := utils.OverrideWithPaths(old, new, "", pathSet)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Expected no error but got %s", err)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(result, expected) {
|
|
|
|
expectedJson, _ := json.Marshal(expected)
|
|
|
|
resultJson, _ := json.Marshal(result)
|
|
|
|
t.Fatalf("Expected %s but got %s", expectedJson, resultJson)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|