inst/unitTests/runit.workbook.existsName.R

#############################################################################
#
# XLConnect
# Copyright (C) 2010-2024 Mirai Solutions GmbH
#
# 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 <https://www.gnu.org/licenses/>.
#
#############################################################################

#############################################################################
#
# Tests around checking existence of Excel names
# 
# Author: Martin Studer, Mirai Solutions GmbH
#
#############################################################################

test.workbook.existsName <- function() {
	
	# Create workbooks
	wb.xls <- loadWorkbook(rsrc("resources/testWorkbookExistsNameAndSheet.xls"), create = FALSE)
	wb.xlsx <- loadWorkbook(rsrc("resources/testWorkbookExistsNameAndSheet.xlsx"), create = FALSE)
	
	expect_found <- TRUE
	attributes(expect_found) <- list(worksheetScope = "")
	
	# Check that the following names exists (*.xls)
	checkEquals(existsName(wb.xls, "AA"), expect_found)
	checkEquals(existsName(wb.xls, "BB"), expect_found)
	checkEquals(existsName(wb.xls, "CC"), expect_found)
	
	# Check that the following do NOT exists (*.xls)
	checkEquals(existsName(wb.xls, "DD"), FALSE)
	checkEquals(existsName(wb.xls, "'illegal name"), FALSE)
	checkEquals(existsName(wb.xls, "%&$$-^~@afk20 235-??a?"), FALSE)
	
	# Check that the following names exists (*.xlsx)
	checkEquals(existsName(wb.xlsx, "AA"), expect_found)
	checkEquals(existsName(wb.xlsx, "BB"), expect_found)
	checkEquals(existsName(wb.xlsx, "CC"), expect_found)
	
	# Check that the following do NOT exists (*.xlsx)
	checkEquals(existsName(wb.xlsx, "DD"), FALSE)
	checkEquals(existsName(wb.xlsx, "'illegal name"), FALSE)
	checkEquals(existsName(wb.xlsx, "%&$$-^~@afk20 235-??a?"), FALSE)

	# check with attributes - where was the name found ? (*.xls)
	attributes(expect_found) <- list(worksheetScope = "AAA")
	checkEquals(existsName(wb.xls, "AA_1"), expect_found)
	attributes(expect_found) <- list(worksheetScope = "BBB")
	checkEquals(existsName(wb.xls, "BB_1"), expect_found)

	# check with attributes - where was the name found ? (*.xlsx)
	attributes(expect_found) <- list(worksheetScope = "AAA")
	checkEquals(existsName(wb.xlsx, "AA_1"), expect_found)
	attributes(expect_found) <- list(worksheetScope = "BBB")
	checkEquals(existsName(wb.xlsx, "BB_1"), expect_found)

	options(XLConnect.setCustomAttributes = FALSE)

	# check without attributes (*.xlsx)
	checkTrue(existsName(wb.xls, "AA_1"))
	checkTrue(existsName(wb.xls, "BB_1"))

	# check without attributes (*.xlsx)
	checkTrue(existsName(wb.xlsx, "AA_1"))
	checkTrue(existsName(wb.xlsx, "BB_1"))

	
	options(XLConnect.setCustomAttributes = TRUE)
}

Try the XLConnect package in your browser

Any scripts or data that you put into this service are public.

XLConnect documentation built on Sept. 11, 2024, 8:04 p.m.