1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*
* (C) Copyright 1996- ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
* In applying this licence, ECMWF does not waive the privileges and immunities
* granted to it by virtue of its status as an intergovernmental organisation
* nor does it submit to any jurisdiction.
*/
/// @file test_MetFile.cc
/// @date Jan 2016
/// @author Florian Rathgeber
#include "eckit/io/FileHandle.h"
#include "eckit/io/MultiHandle.h"
#include "eckit/testing/Test.h"
#include "eccodes.h"
namespace metkit::grib::test {
//----------------------------------------------------------------------------------------------------------------------
CASE("openf filehandle") {
eckit::FileHandle dh("latlon.grib");
FILE* f = dh.openf("r");
codes_handle* h;
int err = 0;
size_t count = 0;
while ((h = codes_handle_new_from_file(nullptr, f, PRODUCT_ANY, &err))) {
count++;
codes_handle_delete(h);
}
fclose(f);
EXPECT(count == 1);
EXPECT(err == GRIB_SUCCESS);
}
//----------------------------------------------------------------------------------------------------------------------
CASE("openf multihandle") {
eckit::MultiHandle dh;
dh += new eckit::FileHandle("latlon.grib");
dh += new eckit::FileHandle("latlon.grib");
FILE* f = dh.openf("r");
codes_handle* h;
int err = 0;
size_t count = 0;
while ((h = codes_handle_new_from_file(nullptr, f, PRODUCT_ANY, &err))) {
count++;
codes_handle_delete(h);
}
fclose(f);
EXPECT(count == 2);
EXPECT(err == GRIB_SUCCESS);
}
//-----------------------------------------------------------------------------
} // namespace metkit::grib::test
int main(int argc, char** argv) {
return eckit::testing::run_tests(argc, argv);
}
|