Add integration test routes with Account RateProfile combination

This commit is contained in:
TeoV
2020-11-19 17:03:12 +02:00
committed by Dan Christian Bogos
parent 5d437a9631
commit 58e00909c7
5 changed files with 223 additions and 0 deletions

View File

@@ -37,6 +37,7 @@
"routes": {
"enabled": true,
"rals_conns": ["*internal"],
"rates_conns": ["*internal"],
},

View File

@@ -39,6 +39,7 @@
"routes": {
"enabled": true,
"rals_conns": ["*internal"],
"rates_conns": ["*internal"],
},

View File

@@ -39,6 +39,7 @@
"routes": {
"enabled": true,
"rals_conns": ["*internal"],
"rates_conns": ["*internal"]
},

View File

@@ -2,4 +2,6 @@
cgrates.org,RT_SPECIAL_1002,,,0,0,*up,4,0,0,*free,RT_ALWAYS,,"* * * * *",0,false,0s,0.01,1m,1s
cgrates.org,RT_RETAIL1,,,0,0,*up,4,0,0,*free,RT_ALWAYS,,"* * * * *",0,false,0s,0.4,1m,30s
cgrates.org,RT_RETAIL1,,,,,,,,,,RT_ALWAYS,,"* * * * *",0,false,1m,0.2,1m,10s
cgrates.org,RT_ANY2CNT_SEC,,,0,0,*up,4,0,0,*free,RT_ALWAYS,,"* * * * *",0,false,0s,0.02,1s,1s
cgrates.org,RT_ANY1CNT_SEC,,,0,0,*up,4,0,0,*free,RT_ALWAYS,,"* * * * *",0,false,0s,0.01,1s,1s
1 #Tenant ID FilterIDs ActivationInterval Weight ConnectFee RoundingMethod RoundingDecimals MinCost MaxCost MaxCostStrategy RateID RateFilterIDs RateActivationStart RateWeight RateBlocker RateIntervalStart RateValue RateUnit RateIncrement
2 cgrates.org RT_SPECIAL_1002 0 0 *up 4 0 0 *free RT_ALWAYS * * * * * 0 false 0s 0.01 1m 1s
3 cgrates.org RT_RETAIL1 0 0 *up 4 0 0 *free RT_ALWAYS * * * * * 0 false 0s 0.4 1m 30s
4 cgrates.org RT_RETAIL1 RT_ALWAYS * * * * * 0 false 1m 0.2 1m 10s
5 cgrates.org RT_ANY2CNT_SEC 0 0 *up 4 0 0 *free RT_ALWAYS * * * * * 0 false 0s 0.02 1s 1s
6 cgrates.org RT_ANY1CNT_SEC 0 0 *up 4 0 0 *free RT_ALWAYS * * * * * 0 false 0s 0.01 1s 1s
7