use of com.google.cloud.dialogflow.v2.Agent in project java-dialogflow by googleapis.
the class AgentsClientTest method searchAgentsTest.
@Test
public void searchAgentsTest() throws Exception {
Agent responsesElement = Agent.newBuilder().build();
SearchAgentsResponse expectedResponse = SearchAgentsResponse.newBuilder().setNextPageToken("").addAllAgents(Arrays.asList(responsesElement)).build();
mockAgents.addResponse(expectedResponse);
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
SearchAgentsPagedResponse pagedListResponse = client.searchAgents(parent);
List<Agent> resources = Lists.newArrayList(pagedListResponse.iterateAll());
Assert.assertEquals(1, resources.size());
Assert.assertEquals(expectedResponse.getAgentsList().get(0), resources.get(0));
List<AbstractMessage> actualRequests = mockAgents.getRequests();
Assert.assertEquals(1, actualRequests.size());
SearchAgentsRequest actualRequest = ((SearchAgentsRequest) actualRequests.get(0));
Assert.assertEquals(parent.toString(), actualRequest.getParent());
Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
use of com.google.cloud.dialogflow.v2.Agent in project java-dialogflow by googleapis.
the class ITSystemTest method getAgentTest.
@Test
public void getAgentTest() {
GetAgentRequest request = GetAgentRequest.newBuilder().setParent(PROJECT_NAME.toString()).build();
Agent actualAgent = agentsClient.getAgent(request);
assertEquals(PROJECT_NAME.toString(), actualAgent.getParent());
assertEquals(DISPLAY_NAME, actualAgent.getDisplayName());
assertEquals(DEFAULT_LANGUAGE_CODE, actualAgent.getDefaultLanguageCode());
assertEquals(TIME_ZONE, actualAgent.getTimeZone());
assertEquals(Agent.MatchMode.MATCH_MODE_HYBRID, actualAgent.getMatchMode());
assertEquals(Agent.ApiVersion.API_VERSION_V2, actualAgent.getApiVersion());
assertEquals(Agent.Tier.TIER_STANDARD, actualAgent.getTier());
}
use of com.google.cloud.dialogflow.v2.Agent in project java-dialogflow-cx by googleapis.
the class ITSystemTest method restoreAgentTest.
@Test
public void restoreAgentTest() throws ExecutionException, InterruptedException {
Agent agent = Agent.newBuilder().setDisplayName("test_agent_" + UUID.randomUUID().toString()).setDescription(DESCRIPTION).setTimeZone(AGENT_TIME_ZONE).setDefaultLanguageCode(DEFAULT_LANGUAGE_CODE).setEnableStackdriverLogging(true).setEnableSpellCorrection(true).build();
Agent response = agentsClient.createAgent(PARENT, agent);
String agentName = response.getName();
try {
/* Replaces the current agent with a new one. Note that all existing resources in agent (e.g.
* intents, entity types, flows) will be removed
*/
RestoreAgentRequest restoreAgentRequest = RestoreAgentRequest.newBuilder().setName(agentName).build();
OperationFuture<Empty, Struct> operationFuture = agentsClient.restoreAgentAsync(restoreAgentRequest);
assertNotEquals(agentName, operationFuture.getName());
} finally {
DeleteAgentRequest deleteAgentRequest = DeleteAgentRequest.newBuilder().setName(agentName).build();
agentsClient.deleteAgent(deleteAgentRequest);
}
}
use of com.google.cloud.dialogflow.v2.Agent in project java-dialogflow-cx by googleapis.
the class ITSystemTest method getAgentTest.
@Test
public void getAgentTest() {
GetAgentRequest request = GetAgentRequest.newBuilder().setName(agentName).build();
Agent agent = agentsClient.getAgent(request);
assertAgentDetails(agent);
}
use of com.google.cloud.dialogflow.v2.Agent in project java-dialogflow-cx by googleapis.
the class ITSystemTest method setUp.
@BeforeClass
public static void setUp() throws IOException, ExecutionException, InterruptedException {
/* create agents */
agentsClient = AgentsClient.create();
Agent agent = Agent.newBuilder().setDisplayName(DISPLAY_NAME).setDescription(DESCRIPTION).setTimeZone(AGENT_TIME_ZONE).setDefaultLanguageCode(DEFAULT_LANGUAGE_CODE).setStartFlow(ID).setEnableStackdriverLogging(true).build();
Agent response = agentsClient.createAgent(PARENT, agent);
agentName = response.getName();
/* create entity types */
entityTypesClient = EntityTypesClient.create();
EntityType entityType = EntityType.newBuilder().setAutoExpansionMode(EntityType.AutoExpansionMode.AUTO_EXPANSION_MODE_DEFAULT).setAutoExpansionModeValue(1).setDisplayName(DISPLAY_NAME).setEnableFuzzyExtraction(true).setKind(EntityType.Kind.KIND_LIST).build();
CreateEntityTypeRequest request = CreateEntityTypeRequest.newBuilder().setParent(agentName).setEntityType(entityType).build();
EntityType entityTypeResponse = entityTypesClient.createEntityType(request);
entityTypesName = entityTypeResponse.getName();
/* create flows */
flowsClient = FlowsClient.create();
Flow flow = Flow.newBuilder().setNluSettings(NLUSETTINGS).setDisplayName(DISPLAY_NAME).setDescription(DESCRIPTION).build();
CreateFlowRequest createFlowRequest = CreateFlowRequest.newBuilder().setParent(agentName).setFlow(flow).build();
Flow flowResponse = flowsClient.createFlow(createFlowRequest);
flowName = flowResponse.getName();
Flow trainFlow = Flow.newBuilder().setNluSettings(NLUSETTINGS).setDisplayName(DISPLAY_NAME2).setDescription(DESCRIPTION).build();
CreateFlowRequest createTrainFlowRequest = CreateFlowRequest.newBuilder().setParent(agentName).setFlow(trainFlow).build();
Flow trainFlowResponse = flowsClient.createFlow(createTrainFlowRequest);
trainFlowName = trainFlowResponse.getName();
/* create intents */
intentsClient = IntentsClient.create();
Intent intent = Intent.newBuilder().setDisplayName(DISPLAY_NAME).setPriority(1).build();
CreateIntentRequest createIntentRequest = CreateIntentRequest.newBuilder().setIntent(intent).setParent(agentName).build();
Intent intentResponse = intentsClient.createIntent(createIntentRequest);
intentsName = intentResponse.getName();
/* create pages */
pagesClient = PagesClient.create();
Page page = Page.newBuilder().setDisplayName(DISPLAY_NAME).build();
CreatePageRequest createPageRequest = CreatePageRequest.newBuilder().setPage(page).setParent(flowName).build();
Page pageResponse = pagesClient.createPage(createPageRequest);
pageName = pageResponse.getName();
/* create session */
sessionsClient = SessionsClient.create();
/* create transition route groups */
transitionRouteGroupsClient = TransitionRouteGroupsClient.create();
TransitionRouteGroup transitionRouteGroup = TransitionRouteGroup.newBuilder().setDisplayName(DISPLAY_NAME).build();
CreateTransitionRouteGroupRequest transitionRouteGroupRequest = CreateTransitionRouteGroupRequest.newBuilder().setParent(flowName).setTransitionRouteGroup(transitionRouteGroup).build();
TransitionRouteGroup transitionRouteGroupResponse = transitionRouteGroupsClient.createTransitionRouteGroup(transitionRouteGroupRequest);
transitionRouteGroupName = transitionRouteGroupResponse.getName();
/* create version */
versionsClient = VersionsClient.create();
Version version = Version.newBuilder().setStateValue(2).setDisplayName(DISPLAY_NAME).build();
CreateVersionRequest createVersionRequest = CreateVersionRequest.newBuilder().setParent(flowName).setVersion(version).build();
Version versionResponse = versionsClient.createVersionAsync(createVersionRequest).get();
versionName = versionResponse.getName();
}
Aggregations