34
34
import java .time .Instant ;
35
35
import java .util .Collections ;
36
36
import java .util .EnumSet ;
37
+ import java .util .HashMap ;
37
38
import java .util .HashSet ;
38
39
import java .util .List ;
39
40
import java .util .Map ;
@@ -429,7 +430,11 @@ public void testCreateAndProvisionIngestAndSearchPipeline() throws Exception {
429
430
public void testDefaultCohereUseCase () throws Exception {
430
431
431
432
// Hit Create Workflow API with original template
432
- Response response = createWorkflowWithUseCase (client (), "cohere_embedding_model_deploy" , List .of (CREATE_CONNECTOR_CREDENTIAL_KEY ));
433
+ Response response = createWorkflowWithUseCaseWithNoValidation (
434
+ client (),
435
+ "cohere_embedding_model_deploy" ,
436
+ List .of (CREATE_CONNECTOR_CREDENTIAL_KEY )
437
+ );
433
438
assertEquals (RestStatus .CREATED , TestHelpers .restStatus (response ));
434
439
435
440
Map <String , Object > responseMap = entityAsMap (response );
@@ -468,15 +473,19 @@ public void testDefaultSemanticSearchUseCaseWithFailureExpected() throws Excepti
468
473
// Hit Create Workflow API with original template without required params
469
474
ResponseException exception = expectThrows (
470
475
ResponseException .class ,
471
- () -> createWorkflowWithUseCase (client (), "semantic_search" , Collections .emptyList ())
476
+ () -> createWorkflowWithUseCaseWithNoValidation (client (), "semantic_search" , Collections .emptyList ())
472
477
);
473
478
assertTrue (
474
479
exception .getMessage ()
475
480
.contains ("Missing the following required parameters for use case [semantic_search] : [create_ingest_pipeline.model_id]" )
476
481
);
477
482
478
483
// Pass in required params
479
- Response response = createWorkflowWithUseCase (client (), "semantic_search" , List .of (CREATE_INGEST_PIPELINE_MODEL_ID ));
484
+ Response response = createWorkflowWithUseCaseWithNoValidation (
485
+ client (),
486
+ "semantic_search" ,
487
+ List .of (CREATE_INGEST_PIPELINE_MODEL_ID )
488
+ );
480
489
assertEquals (RestStatus .CREATED , TestHelpers .restStatus (response ));
481
490
482
491
Map <String , Object > responseMap = entityAsMap (response );
@@ -502,7 +511,7 @@ public void testAllDefaultUseCasesCreation() throws Exception {
502
511
.collect (Collectors .toSet ());
503
512
504
513
for (String useCaseName : allUseCaseNames ) {
505
- Response response = createWorkflowWithUseCase (
514
+ Response response = createWorkflowWithUseCaseWithNoValidation (
506
515
client (),
507
516
useCaseName ,
508
517
DefaultUseCases .getRequiredParamsByUseCaseName (useCaseName )
@@ -514,4 +523,67 @@ public void testAllDefaultUseCasesCreation() throws Exception {
514
523
getAndAssertWorkflowStatus (client (), workflowId , State .NOT_STARTED , ProvisioningProgress .NOT_STARTED );
515
524
}
516
525
}
526
+
527
+ public void testSemanticSearchWithLocalModelEndToEnd () throws Exception {
528
+
529
+ Map <String , Object > defaults = new HashMap <>();
530
+ defaults .put ("register_local_pretrained_model.name" , "huggingface/sentence-transformers/all-MiniLM-L6-v2" );
531
+ defaults .put ("register_local_pretrained_model.version" , "1.0.1" );
532
+ defaults .put ("text_embedding.field_map.output.dimension" , 384 );
533
+
534
+ Response response = createAndProvisionWorkflowWithUseCaseWithContent (client (), "semantic_search_with_local_model" , defaults );
535
+ assertEquals (RestStatus .CREATED , TestHelpers .restStatus (response ));
536
+
537
+ Map <String , Object > responseMap = entityAsMap (response );
538
+ String workflowId = (String ) responseMap .get (WORKFLOW_ID );
539
+ getAndAssertWorkflowStatus (client (), workflowId , State .PROVISIONING , ProvisioningProgress .IN_PROGRESS );
540
+
541
+ // Wait until provisioning has completed successfully before attempting to retrieve created resources
542
+ List <ResourceCreated > resourcesCreated = getResourcesCreated (client (), workflowId , 45 );
543
+
544
+ // This template should create 4 resources, registered model_id, deployed model_id, ingest pipeline, and index name
545
+ assertEquals (4 , resourcesCreated .size ());
546
+ String modelId = resourcesCreated .get (1 ).resourceId ();
547
+ String indexName = resourcesCreated .get (3 ).resourceId ();
548
+
549
+ // Short wait before ingesting data
550
+ Thread .sleep (30000 );
551
+
552
+ String docContent = "{\" passage_text\" : \" Hello planet\" \n }" ;
553
+ ingestSingleDoc (docContent , indexName );
554
+ // Short wait before neural search
555
+ Thread .sleep (500 );
556
+ SearchResponse neuralSearchResponse = neuralSearchRequest (indexName , modelId );
557
+ assertEquals (neuralSearchResponse .getHits ().getHits ().length , 1 );
558
+ Thread .sleep (500 );
559
+ deleteIndex (indexName );
560
+
561
+ // Hit Deprovision API
562
+ // By design, this may not completely deprovision the first time if it takes >2s to process removals
563
+ Response deprovisionResponse = deprovisionWorkflow (client (), workflowId );
564
+ try {
565
+ assertBusy (
566
+ () -> { getAndAssertWorkflowStatus (client (), workflowId , State .NOT_STARTED , ProvisioningProgress .NOT_STARTED ); },
567
+ 30 ,
568
+ TimeUnit .SECONDS
569
+ );
570
+ } catch (ComparisonFailure e ) {
571
+ // 202 return if still processing
572
+ assertEquals (RestStatus .ACCEPTED , TestHelpers .restStatus (deprovisionResponse ));
573
+ }
574
+ if (TestHelpers .restStatus (deprovisionResponse ) == RestStatus .ACCEPTED ) {
575
+ // Short wait before we try again
576
+ Thread .sleep (10000 );
577
+ deprovisionResponse = deprovisionWorkflow (client (), workflowId );
578
+ assertBusy (
579
+ () -> { getAndAssertWorkflowStatus (client (), workflowId , State .NOT_STARTED , ProvisioningProgress .NOT_STARTED ); },
580
+ 30 ,
581
+ TimeUnit .SECONDS
582
+ );
583
+ }
584
+ assertEquals (RestStatus .OK , TestHelpers .restStatus (deprovisionResponse ));
585
+ // Hit Delete API
586
+ Response deleteResponse = deleteWorkflow (client (), workflowId );
587
+ assertEquals (RestStatus .OK , TestHelpers .restStatus (deleteResponse ));
588
+ }
517
589
}
0 commit comments