TSG-23303 Negate hit path fix

TSG-23330 Statistics strategy complile table name changed
TSG-23363 Using incorrect judgment results in duplicate objects
This commit is contained in:
fengweihao
2024-11-05 11:57:39 +08:00
parent cb35a2b92b
commit ef4658d38d
5 changed files with 23 additions and 24 deletions

View File

@@ -5,7 +5,7 @@
"vsys": 1,
"verify_list": [
{
"type": "pxy_manipulation",
"type": "proxy_manipulation",
"verify_session": {
"attributes": [
{
@@ -28,7 +28,7 @@
"vsys": 1,
"verify_list": [
{
"type": "pxy_manipulation",
"type": "proxy_manipulation",
"verify_session": {
"attributes": [
{
@@ -147,7 +147,7 @@
"vsys": 1,
"verify_list": [
{
"type": "pxy_manipulation",
"type": "proxy_manipulation",
"verify_session": {
"attributes": [
{
@@ -193,7 +193,7 @@
"vsys": 1,
"verify_list": [
{
"type": "pxy_manipulation",
"type": "proxy_manipulation",
"verify_session": {
"attributes": [
{
@@ -242,7 +242,7 @@
"vsys": 1,
"verify_list": [
{
"type": "pxy_manipulation",
"type": "proxy_manipulation",
"verify_session": {
"attributes": [
{
@@ -282,7 +282,7 @@
"vsys": 1,
"verify_list": [
{
"type": "pxy_manipulation",
"type": "proxy_manipulation",
"verify_session": {
"attributes": [
{
@@ -356,7 +356,7 @@
"vsys": 1,
"verify_list": [
{
"type": "pxy_manipulation",
"type": "proxy_manipulation",
"vsys": 1,
"verify_session": {
"attributes": [

View File

@@ -476,10 +476,6 @@
{
"item_uuid": "00000000-0000-0000-0000-000000000000",
"superior_object_uuid": "00003021-0000-0000-0000-000000000000"
},
{
"item_uuid": "00000000-0000-0000-0000-000000000000",
"superior_object_uuid": "00003022-0000-0000-0000-000000000000"
}
]
}

View File

@@ -397,6 +397,9 @@ TEST(VerifyPolicy, HitTunnelEndpointaPolicy_1027)
char *hit_policy_query = cJSON_PrintUnformatted(result_json);
ASSERT_TRUE(hit_policy_query != NULL);
printf("hit_policy_query = %s\n", hit_policy_query);
printf("hit_policy_result = %s\n", hit_policy_result);
int equal = strncasecmp(hit_policy_query+2, hit_policy_result+16, strlen(hit_policy_result));
EXPECT_EQ(equal, 0);