前提・実現したいこと
OSSのソースをmaven をビルドを行う際に、Jersey Test にて期待していないエラーを出力いており、この回避方法についてお教えいただきたく思います。
OSS(ONAP)のマニュアルに従い、mavenにてソースのビルドを行おうとしたところ、jerseyのUnit Test にてエラーを出力しております。同手順を、プロキシ環境外で実施した際には本エラーが出力されないことから、プロキシが原因であると想定しておりますが、解決方法が分からず、困っております。
発生している問題・エラーメッセージ
Unit Testにて、以下のExceptionが発生しております。
Javaのテストのエラー結果
1[ERROR] Failures: 2 [ERROR] ArchiveEndpointTest.archiveWithInvalidUid:387->archiveComponent:423->archiveOrRestoreComponent:435 expected:<[404]> but was:<[500]> 3 [ERROR] ArchiveEndpointTest.attemptArchiveCheckedOutService:345->archiveComponent:423->archiveOrRestoreComponent:435 expected:<[409]> but was:<[500]> 4 [ERROR] ArchiveEndpointTest.restoreWithInvalidUid:392->restoreComponent:424->archiveOrRestoreComponent:435 expected:<[404]> but was:<[500]> 5 [ERROR] GroupEndpointTest.updateGroupMember_InvalidComponentId_failure:216 expected:<[404]> but was:<[500]> 6[ERROR] Errors: 7 [ERROR] ServiceDistributionBLTest.testDistributionAuthenticationFails:140->callActivateServiceOnTenantWIthDefaults:212 » NullPointer 8 [ERROR] ServiceDistributionBLTest.testDistributionConnectionErrorFails:164->callActivateServiceOnTenantWIthDefaults:212 » NullPointer 9 [ERROR] ServiceDistributionBLTest.testDistributionGeneralFails:187->callActivateServiceOnTenantWIthDefaults:212 » NullPointer 10(以下、省略)
サーバがレスポンスを上手に返却できていないことによりエラーを出力していると考えており、レスポンスを作成するテストサーバ?が壊れていると想定いたしました。
こちらの解決方法について、教えていただきたく
該当のソースコード
試したこと
・Child pom.xml のjackson-mapper のバージョンの修正
・Parent pom.xml のjson-simplejson-simple、servlet-apiのバージョンの修正
あなたの回答
tips
プレビュー