aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe
AgeCommit message (Expand)AuthorFilesLines
2021-11-15Fix critical cross site scriptingvasraz2-15/+15
2021-10-12Revert "Fix critical cross site scripting"vasraz1-4/+3
2021-10-01Step version for JakartaMichaelMorris1-1/+1
2021-09-20Updated SDC version to 1.9.2-SNAPSHOT1.9.2MichaelMorris1-1/+1
2021-09-13Update SDC version to 1.9.1-SNAPSHOT1.9.1MichaelMorris1-1/+1
2021-08-19Align all SDC dependencies versionsvasraz1-2/+2
2021-08-11Fix critical cross site scriptingaribeiro1-3/+4
2021-07-29fix security vulnerabilityaribeiro1-5/+6
2021-07-27Remove dependency vulnerabilityvasraz1-0/+4
2021-07-21Remove dependency vulnerabilityvasraz1-2/+13
2021-06-04Fix dependencies with Critical Violationsvasraz1-67/+82
2021-05-15Update vulnerable package dependenciesvasraz1-0/+10
2021-05-12Use integration-java11 Dockerfilesebdet12-93/+76
2021-04-12Fix weak-cryptography issuesxuegao3-119/+6
2021-03-29Reformat catalog-fevasraz23-826/+596
2021-03-22Update Master to IstambulChrisC1-1/+1
2021-03-18Improve test coveragevasraz1-1/+1
2021-03-17Update SDC versionChrisC1-1/+1
2021-03-16Remove unused dcae-be healthcheckChrisC4-66/+2
2021-03-04Update to 1.8.31.8.3ChrisC1-1/+1
2021-02-25Update version to 1.8.21.8.2ChrisC1-1/+1
2021-02-22Fix locally failing TCs in catalog-bevasraz2-146/+186
2021-02-17Implement Attributes/Outputs FEvasraz1-191/+194
2021-02-03Fix potential NPExuegao1-1/+2
2021-01-30Update project version 1.8.0 -> 1.8.11.8.1Joanna Jeremicz1-1/+1
2021-01-22Remove vulnerable log4j dependencyvasraz1-0/+6
2021-01-20Remove dead codeJulienBe2-10/+4
2021-01-19Add basic authxuegao4-8/+28
2020-11-05Update master to HonoluluChrisC1-1/+1
2020-10-30Remove the Log4j 1.2.15sebdet3-2/+17
2020-10-26Fix broken local build1.7.2vasraz1-1/+1
2020-10-20Upgrade to 1.7.2sebdet1-1/+1
2020-09-25Standardize docker tagging1.7.1sebdet1-9/+2
2020-09-18Introduce a new docker for be pluginssebdet1-1/+1
2020-09-08Upgrade to java 11sebdet4-30/+90
2020-09-07Update version to 1.7.1sebdet1-1/+1
2020-07-15Align onap/base_sdc-xyz versionsvasraz1-1/+1
2020-06-25Rationalize maven dependenciesJulienBe1-20/+0
2020-06-25add a new profil for fast buildJulienBe1-0/+1
2020-06-21Toggletalio1-1/+1
2020-06-15Fix Critical security vulnerabilityvasraz1-1/+6
2020-05-07Reduce scope from 'compile' to 'test' for 'junit-vintage-engine'vasraz1-0/+1
2020-05-06Prepare for Junit5vasraz1-568/+584
2020-05-05Setting default store types when not defined in configuration for init of htt...ilanap1-3/+4
2020-04-21Fix 404 in sdc-FE calls to workflowandre.schmid1-11/+12
2020-04-21Fix catalog-fe plugin online checkingandre.schmid1-0/+452
2020-04-19Removed explicit references to exceptions in log messagesChris André1-1/+1
2020-04-06Fix ready probe exit codeandre.schmid1-4/+5
2020-03-30Initial fix for https call to pluginsilanap2-3/+185
2020-03-26Updated the sdc certk.kedron4-4/+4
">); outcome.setSubRequestId(oper.getSubRequestId()); CompletableFuture<OperationOutcome> future2 = oper.startOperationAsync(1, outcome); assertFalse(future2.isDone()); executor.runAll(100); assertTrue(future2.isDone()); assertEquals(OperationResult.SUCCESS, future2.get().getResult()); // data should have been cached within the context StandardCoderObject data = context.getProperty(AaiGetTenantOperation.getKey(TARGET_ENTITY)); assertNotNull(data); assertEquals(TEXT, data.getString(INPUT_FIELD)); assertEquals("1", future2.get().getSubRequestId()); } /** * Tests startOperationAsync() when there's a failure. */ @Test @SuppressWarnings("unchecked") public void testStartOperationAsyncFailure() throws Exception { when(rawResponse.getStatus()).thenReturn(500); when(rawResponse.readEntity(String.class)).thenReturn(""); when(webAsync.get(any(InvocationCallback.class))).thenAnswer(provideResponse(rawResponse)); CompletableFuture<OperationOutcome> future2 = oper.startOperationAsync(1, outcome); assertFalse(future2.isDone()); executor.runAll(100); assertTrue(future2.isDone()); assertEquals(OperationResult.FAILURE, future2.get().getResult()); // data should NOT have been cached within the context assertNull(context.getProperty(AaiGetTenantOperation.getKey(TARGET_ENTITY))); } @Test public void testGetKey() { assertEquals("AAI.Tenant." + TARGET_ENTITY, AaiGetTenantOperation.getKey(TARGET_ENTITY)); } }