Mercurial > hg > orthanc-neuro
view Sources/UnitTestsSources/UnitTestsMain.cpp @ 11:12e36b1b84f3
testing with dcmtk
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 30 Apr 2022 11:26:21 +0200 |
parents | a2d79b456440 |
children | 2c8f8168c1ab |
line wrap: on
line source
/** * Neuroimaging plugin for Orthanc * Copyright (C) 2021-2022 Sebastien Jodogne, UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #include <gtest/gtest.h> #include <Logging.h> #if ORTHANC_ENABLE_DCMTK == 1 # include "../Framework/InputDicomInstance.h" # include <DicomParsing/ParsedDicomFile.h> # include <SystemToolbox.h> TEST(Dcmtk, DumpCSAHeader) { std::string s; Orthanc::SystemToolbox::ReadFile(s, "49210406"); Orthanc::ParsedDicomFile dicom(s); Neuro::InputDicomInstance instance(dicom); std::list<std::string> tags; instance.GetCSAHeader().ListTags(tags); for (std::list<std::string>::const_iterator it = tags.begin(); it != tags.end(); ++it) { const Neuro::CSATag& tag = instance.GetCSAHeader().GetTag(*it); printf("[%s] (%d) = ", it->c_str(), tag.GetSize()); for (size_t i = 0; i < tag.GetSize(); i++) { printf("[%s] ", tag.GetStringValue(i).c_str()); } printf("\n"); } } #endif int main(int argc, char **argv) { Orthanc::Logging::Initialize(); Orthanc::Logging::EnableInfoLevel(true); ::testing::InitGoogleTest(&argc, argv); int result = RUN_ALL_TESTS(); Orthanc::Logging::Finalize(); return result; }