Merge branch 'hapifhir:master' into master

This commit is contained in:
Ole Hedegaard 2024-01-18 12:08:26 +01:00 committed by GitHub
commit 81c6b84f51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 2 deletions

View File

@ -48,10 +48,10 @@ public class MdmLinkExpandSvc implements IMdmLinkExpandSvc {
private static final Logger ourLog = Logs.getMdmTroubleshootingLog();
@Autowired
private IMdmLinkDao myMdmLinkDao;
IMdmLinkDao myMdmLinkDao;
@Autowired
private IIdHelperService myIdHelperService;
IIdHelperService myIdHelperService;
public MdmLinkExpandSvc() {}

View File

@ -8,6 +8,7 @@ import ca.uhn.fhir.mdm.dao.IMdmLinkDao;
import ca.uhn.fhir.mdm.model.MdmPidTuple;
import ca.uhn.fhir.rest.api.server.storage.IResourcePersistentId;
import jakarta.annotation.Nonnull;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
@ -57,6 +58,13 @@ class MdmLinkExpandSvcTest {
@InjectMocks
private MdmLinkExpandSvc mySubject;
@BeforeEach
public void beforeEach() {
mySubject.myMdmLinkDao = myIMdmLinkDao;
mySubject.myIdHelperService = myIdHelperService;
}
void beforeEachExpand() {
final Answer<Set<String>> answer = invocation -> {
final Set<IResourcePersistentId<?>> param = invocation.getArgument(0);

View File

@ -47,6 +47,8 @@ steps:
# 3. Import keys into gpg
- bash: |
apt update
apt install -y gpg
gpg --import --no-tty --batch --yes $(Agent.TempDirectory)/public.key
gpg --import --no-tty --batch --yes $(Agent.TempDirectory)/private.key
gpg --list-keys --keyid-format LONG