forked from apache/incubator-kie-kogito-apps
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from rgdoliveira/sync_main
Sync main branch with Apache main branch
- Loading branch information
Showing
27 changed files
with
756 additions
and
63 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
...integration-tests-jobs-service-quarkus-embedded/src/test/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
|
||
quarkus.kafka.devservices.image-name=${container.image.kafka} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
...ndex-graphql/src/test/java/org/kie/kogito/index/graphql/query/GraphQLQueryMapperTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.kie.kogito.index.graphql.query; | ||
|
||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.kie.kogito.index.json.JsonUtils.jsonFilter; | ||
import static org.kie.kogito.persistence.api.query.QueryFilterFactory.*; | ||
|
||
public class GraphQLQueryMapperTest { | ||
|
||
private GraphQLQueryMapper mapper; | ||
|
||
@BeforeEach | ||
void setup() { | ||
mapper = new GraphQLQueryMapper(); | ||
} | ||
|
||
@Test | ||
void testJsonMapperEqual() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("equal", 1))))).containsExactly( | ||
jsonFilter(equalTo("variables.workflowdata.number", 1))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperGreater() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("greaterThan", 1))))).containsExactly( | ||
jsonFilter(greaterThan("variables.workflowdata.number", 1))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperLess() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("lessThan", 1))))).containsExactly( | ||
jsonFilter(lessThan("variables.workflowdata.number", 1))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperGreaterEqual() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("greaterThanEqual", 1))))).containsExactly( | ||
jsonFilter(greaterThanEqual("variables.workflowdata.number", 1))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperLessEqual() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("lessThanEqual", 1))))).containsExactly( | ||
jsonFilter(lessThanEqual("variables.workflowdata.number", 1))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperBetween() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("between", Map.of("from", 1, "to", 3)))))).containsExactly( | ||
jsonFilter(between("variables.workflowdata.number", 1, 3))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperIn() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("in", List.of(1, 3)))))).containsExactly( | ||
jsonFilter(in("variables.workflowdata.number", Arrays.asList(1, 3)))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperContains() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("contains", 1))))).containsExactly( | ||
jsonFilter(contains("variables.workflowdata.number", 1))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperContainsAny() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("containsAny", List.of(1, 2, 3)))))).containsExactly( | ||
jsonFilter(containsAny("variables.workflowdata.number", List.of(1, 2, 3)))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperContainsAll() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("containsAll", List.of(1, 2, 3)))))).containsExactly( | ||
jsonFilter(containsAll("variables.workflowdata.number", List.of(1, 2, 3)))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperLike() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("like", "kk"))))).containsExactly( | ||
jsonFilter(like("variables.workflowdata.number", "kk"))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperNull() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("isNull", true))))).containsExactly( | ||
jsonFilter(isNull("variables.workflowdata.number"))); | ||
} | ||
|
||
@Test | ||
void testJsonMapperNotNull() { | ||
assertThat(mapper.mapJsonArgument("variables").apply(Map.of("workflowdata", Map.of("number", Map.of("isNull", false))))).containsExactly( | ||
jsonFilter(notNull("variables.workflowdata.number"))); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.