/* Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments Copyright (C) ITsysCOM GmbH This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see */ package config import ( "reflect" "strings" "testing" "github.com/cgrates/cgrates/utils" ) func TestHttpAgentCfgsloadFromJsonCfg(t *testing.T) { var httpcfg, expected HttpAgentCfgs if err := httpcfg.loadFromJsonCfg(nil, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(httpcfg, expected) { t.Errorf("Expected: %+v ,recived: %+v", expected, httpcfg) } if err := httpcfg.loadFromJsonCfg(new([]*HttpAgentJsonCfg), utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(httpcfg, expected) { t.Errorf("Expected: %+v ,recived: %+v", expected, httpcfg) } cfgJSONStr := `{ "http_agent": [ { "id": "conecto1", "url": "/conecto", "sessions_conns": [ {"address": "127.0.0.1:2012", "transport": "*json"} ], "request_payload": "*url", "reply_payload": "*xml", "request_processors": [ { "id": "OutboundAUTHDryRun", "filters": ["*string:*req.request_type:OutboundAUTH","*string:*req.Msisdn:497700056231"], "tenant": "cgrates.org", "flags": ["*dryrun"], "request_fields":[ ], "reply_fields":[ {"tag": "Allow", "field_id": "response.Allow", "type": "*constant", "value": "1", "mandatory": true}, ], }, ], }, ], }` expected = HttpAgentCfgs{&HttpAgentCfg{ ID: "conecto1", Url: "/conecto", SessionSConns: []*RemoteHost{{Address: "127.0.0.1:2012", Transport: "*json"}}, RequestPayload: "*url", ReplyPayload: "*xml", RequestProcessors: []*HttpAgntProcCfg{{ Id: "OutboundAUTHDryRun", Filters: []string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*dryrun": true}, RequestFields: []*FCTemplate{}, ReplyFields: []*FCTemplate{{ Tag: "Allow", FieldId: "response.Allow", Type: "*constant", Value: NewRSRParsersMustCompile("1", true, utils.INFIELD_SEP), Mandatory: true, }}, }}, }} if jsnCfg, err := NewCgrJsonCfgFromReader(strings.NewReader(cfgJSONStr)); err != nil { t.Error(err) } else if jsnhttpCfg, err := jsnCfg.HttpAgentJsonCfg(); err != nil { t.Error(err) } else if err = httpcfg.loadFromJsonCfg(jsnhttpCfg, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(expected, httpcfg) { t.Errorf("Expected: %+v , recived: %+v", utils.ToJSON(expected), utils.ToJSON(httpcfg)) } cfgJSONStr = `{ "http_agent": [ { "id": "conecto1", "url": "/conecto", "sessions_conns": [ {"address": "127.0.0.1:2012", "transport": "*json"} ], "request_payload": "*url", "reply_payload": "*xml", "request_processors": [ { "id": "mtcall_cdr", "filters": ["*string:*req.request_type:MTCALL_CDR"], "tenant": "cgrates.org", "flags": ["*cdrs"], "request_fields":[ {"tag": "RequestType", "field_id": "RequestType", "type": "*constant", "value": "*pseudoprepaid", "mandatory": true}, ], "reply_fields":[ {"tag": "CDR_ID", "field_id": "CDR_RESPONSE.CDR_ID", "type": "*composed", "value": "~*req.CDR_ID", "mandatory": true}, ], }, ], }, { "id": "conecto_xml", "url": "/conecto_xml", "sessions_conns": [ {"address": "127.0.0.1:2012", "transport": "*json"} ], "request_payload": "*xml", "reply_payload": "*xml", "request_processors": [ { "id": "cdr_from_xml", "tenant": "cgrates.org", "flags": ["*cdrs"], "request_fields":[], "reply_fields":[], } ], }, ], }` expected = HttpAgentCfgs{ &HttpAgentCfg{ ID: "conecto1", Url: "/conecto", SessionSConns: []*RemoteHost{{Address: "127.0.0.1:2012", Transport: "*json"}}, RequestPayload: "*url", ReplyPayload: "*xml", RequestProcessors: []*HttpAgntProcCfg{{ Id: "OutboundAUTHDryRun", Filters: []string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*dryrun": true}, RequestFields: []*FCTemplate{}, ReplyFields: []*FCTemplate{{ Tag: "Allow", FieldId: "response.Allow", Type: "*constant", Value: NewRSRParsersMustCompile("1", true, utils.INFIELD_SEP), Mandatory: true, }}}, { Id: "mtcall_cdr", Filters: []string{"*string:*req.request_type:MTCALL_CDR"}, Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*cdrs": true}, RequestFields: []*FCTemplate{{ Tag: "RequestType", FieldId: "RequestType", Type: "*constant", Value: NewRSRParsersMustCompile("*pseudoprepaid", true, utils.INFIELD_SEP), Mandatory: true, }}, ReplyFields: []*FCTemplate{{ Tag: "CDR_ID", FieldId: "CDR_RESPONSE.CDR_ID", Type: "*composed", Value: NewRSRParsersMustCompile("~*req.CDR_ID", true, utils.INFIELD_SEP), Mandatory: true, }}, }}, }, &HttpAgentCfg{ ID: "conecto_xml", Url: "/conecto_xml", SessionSConns: []*RemoteHost{{Address: "127.0.0.1:2012", Transport: "*json"}}, RequestPayload: "*xml", ReplyPayload: "*xml", RequestProcessors: []*HttpAgntProcCfg{{ Id: "cdr_from_xml", Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*cdrs": true}, RequestFields: []*FCTemplate{}, ReplyFields: []*FCTemplate{}, }}, }} if jsnCfg, err := NewCgrJsonCfgFromReader(strings.NewReader(cfgJSONStr)); err != nil { t.Error(err) } else if jsnhttpCfg, err := jsnCfg.HttpAgentJsonCfg(); err != nil { t.Error(err) } else if err = httpcfg.loadFromJsonCfg(jsnhttpCfg, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(expected, httpcfg) { t.Errorf("Expected: %+v , recived: %+v", utils.ToJSON(expected), utils.ToJSON(httpcfg)) } } func TestHttpAgentCfgloadFromJsonCfg(t *testing.T) { var httpcfg, expected HttpAgentCfg if err := httpcfg.loadFromJsonCfg(nil, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(httpcfg, expected) { t.Errorf("Expected: %+v ,recived: %+v", expected, httpcfg) } if err := httpcfg.loadFromJsonCfg(new(HttpAgentJsonCfg), utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(httpcfg, expected) { t.Errorf("Expected: %+v ,recived: %+v", expected, httpcfg) } jsnhttpCfg := &HttpAgentJsonCfg{ Id: utils.StringPointer("conecto1"), Url: utils.StringPointer("/conecto"), Sessions_conns: &[]*RemoteHostJson{{Address: utils.StringPointer("127.0.0.1:2012"), Transport: utils.StringPointer("*json")}}, Request_payload: utils.StringPointer("*url"), Reply_payload: utils.StringPointer("*xml"), Request_processors: &[]*HttpAgentProcessorJsnCfg{ { Id: utils.StringPointer("OutboundAUTHDryRun"), Filters: &[]string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: utils.StringPointer("cgrates.org"), Flags: &[]string{"*dryrun"}, Request_fields: &[]*FcTemplateJsonCfg{}, Reply_fields: &[]*FcTemplateJsonCfg{}, }, }, } expected = HttpAgentCfg{ ID: "conecto1", Url: "/conecto", SessionSConns: []*RemoteHost{{Address: "127.0.0.1:2012", Transport: "*json"}}, RequestPayload: "*url", ReplyPayload: "*xml", RequestProcessors: []*HttpAgntProcCfg{{ Id: "OutboundAUTHDryRun", Filters: []string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*dryrun": true}, RequestFields: []*FCTemplate{}, ReplyFields: []*FCTemplate{}, }}, } if err = httpcfg.loadFromJsonCfg(jsnhttpCfg, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(expected, httpcfg) { t.Errorf("Expected: %+v , recived: %+v", utils.ToJSON(expected), utils.ToJSON(httpcfg)) } } func TestHttpAgentCfgappendHttpAgntProcCfgs(t *testing.T) { initial := &HttpAgentCfg{ ID: "conecto1", Url: "/conecto", SessionSConns: []*RemoteHost{{Address: "127.0.0.1:2012", Transport: "*json"}}, RequestPayload: "*url", ReplyPayload: "*xml", RequestProcessors: []*HttpAgntProcCfg{{ Id: "OutboundAUTHDryRun", Filters: []string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*dryrun": true}, RequestFields: []*FCTemplate{}, ReplyFields: []*FCTemplate{{ Tag: "Allow", FieldId: "response.Allow", Type: "*constant", Value: NewRSRParsersMustCompile("1", true, utils.INFIELD_SEP), Mandatory: true, }}, }}, } proceses := &[]*HttpAgentProcessorJsnCfg{{ Id: utils.StringPointer("OutboundAUTHDryRun1"), Filters: &[]string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: utils.StringPointer("cgrates.org"), Flags: &[]string{"*dryrun"}, Request_fields: &[]*FcTemplateJsonCfg{}, Reply_fields: &[]*FcTemplateJsonCfg{{ Tag: utils.StringPointer("Allow"), Field_id: utils.StringPointer("response.Allow"), Type: utils.StringPointer("*constant"), Value: utils.StringPointer("1"), Mandatory: utils.BoolPointer(true), }}, }, { Id: utils.StringPointer("OutboundAUTHDryRun"), Filters: &[]string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: utils.StringPointer("cgrates.org"), Flags: &[]string{"*dryrun"}, Request_fields: &[]*FcTemplateJsonCfg{}, Reply_fields: &[]*FcTemplateJsonCfg{{ Tag: utils.StringPointer("Allow"), Field_id: utils.StringPointer("response.Allow"), Type: utils.StringPointer("*constant"), Value: utils.StringPointer("1"), Mandatory: utils.BoolPointer(false), }}, }, } expected := &HttpAgentCfg{ ID: "conecto1", Url: "/conecto", SessionSConns: []*RemoteHost{{Address: "127.0.0.1:2012", Transport: "*json"}}, RequestPayload: "*url", ReplyPayload: "*xml", RequestProcessors: []*HttpAgntProcCfg{{ Id: "OutboundAUTHDryRun", Filters: []string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*dryrun": true}, RequestFields: []*FCTemplate{}, ReplyFields: []*FCTemplate{{ Tag: "Allow", FieldId: "response.Allow", Type: "*constant", Value: NewRSRParsersMustCompile("1", true, utils.INFIELD_SEP), Mandatory: false, }}, }, { Id: "OutboundAUTHDryRun1", Filters: []string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*dryrun": true}, RequestFields: []*FCTemplate{}, ReplyFields: []*FCTemplate{{ Tag: "Allow", FieldId: "response.Allow", Type: "*constant", Value: NewRSRParsersMustCompile("1", true, utils.INFIELD_SEP), Mandatory: true, }}, }}, } if err = initial.appendHttpAgntProcCfgs(proceses, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(expected, initial) { t.Errorf("Expected: %+v , recived: %+v", utils.ToJSON(expected), utils.ToJSON(initial)) } } func TestHttpAgntProcCfgloadFromJsonCfg(t *testing.T) { var httpcfg, expected HttpAgntProcCfg if err := httpcfg.loadFromJsonCfg(nil, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(httpcfg, expected) { t.Errorf("Expected: %+v ,recived: %+v", expected, httpcfg) } if err := httpcfg.loadFromJsonCfg(new(HttpAgentProcessorJsnCfg), utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(httpcfg, expected) { t.Errorf("Expected: %+v ,recived: %+v", expected, httpcfg) } jsnhttpCfg := &HttpAgentProcessorJsnCfg{ Id: utils.StringPointer("OutboundAUTHDryRun1"), Filters: &[]string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: utils.StringPointer("cgrates.org"), Flags: &[]string{"*dryrun"}, Request_fields: &[]*FcTemplateJsonCfg{}, Reply_fields: &[]*FcTemplateJsonCfg{{ Tag: utils.StringPointer("Allow"), Field_id: utils.StringPointer("response.Allow"), Type: utils.StringPointer("*constant"), Value: utils.StringPointer("1"), Mandatory: utils.BoolPointer(true), }}, } expected = HttpAgntProcCfg{ Id: "OutboundAUTHDryRun1", Filters: []string{"*string:*req.request_type:OutboundAUTH", "*string:*req.Msisdn:497700056231"}, Tenant: NewRSRParsersMustCompile("cgrates.org", true, utils.INFIELD_SEP), Flags: utils.StringMap{"*dryrun": true}, RequestFields: []*FCTemplate{}, ReplyFields: []*FCTemplate{{ Tag: "Allow", FieldId: "response.Allow", Type: "*constant", Value: NewRSRParsersMustCompile("1", true, utils.INFIELD_SEP), Mandatory: true, }}, } if err = httpcfg.loadFromJsonCfg(jsnhttpCfg, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(expected, httpcfg) { t.Errorf("Expected: %+v , recived: %+v", utils.ToJSON(expected), utils.ToJSON(httpcfg)) } }