50 строки
1.7 KiB
Python
Исполняемый файл
50 строки
1.7 KiB
Python
Исполняемый файл
#!/usr/bin/env pytest
|
|
###############################################################################
|
|
# $Id$
|
|
#
|
|
# Project: GDAL/OGR Test Suite
|
|
# Purpose: Test read/write functionality for portable anymap file format
|
|
# Author: Frank Warmerdam <warmerdam@pobox.com>
|
|
#
|
|
###############################################################################
|
|
# Copyright (c) 2003, Frank Warmerdam <warmerdam@pobox.com>
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Library General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library 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
|
|
# Library General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Library General Public
|
|
# License along with this library; if not, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
###############################################################################
|
|
|
|
import gdaltest
|
|
import pytest
|
|
|
|
init_list = [("byte.tif", 4672), ("uint16.tif", 4672)]
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"filename,checksum",
|
|
init_list,
|
|
ids=[tup[0].split(".")[0] for tup in init_list],
|
|
)
|
|
@pytest.mark.parametrize(
|
|
"testfunction",
|
|
[
|
|
"testCreateCopy",
|
|
"testCreate",
|
|
],
|
|
)
|
|
@pytest.mark.require_driver("PNM")
|
|
def test_pnm_create(filename, checksum, testfunction):
|
|
ut = gdaltest.GDALTest("PNM", filename, 1, checksum)
|
|
getattr(ut, testfunction)()
|