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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
## dbWriteTable test
##
## Assumes that
## a) PostgreSQL is running, and
## b) the current user can connect
## both of which are not viable for release but suitable while we test
##
## Dirk Eddelbuettel, 10 Sep 2009
## only run this if this env.var is set correctly
if (Sys.getenv("POSTGRES_USER") != "" & Sys.getenv("POSTGRES_HOST") != "" & Sys.getenv("POSTGRES_DATABASE") != "") {
## try to load our module and abort if this fails
stopifnot(require(RPostgreSQL))
## load the PostgresSQL driver
drv <- dbDriver("PostgreSQL")
## connect to the default db
con <- dbConnect(drv,
user=Sys.getenv("POSTGRES_USER"),
password=Sys.getenv("POSTGRES_PASSWD"),
host=Sys.getenv("POSTGRES_HOST"),
dbname=Sys.getenv("POSTGRES_DATABASE"),
port=ifelse((p<-Sys.getenv("POSTGRES_PORT"))!="", p, 5432))
if (dbExistsTable(con, "rockdata")) {
print("Removing rockdata\n")
dbRemoveTable(con, "rockdata")
}
dbGetQuery(con, "set client_encoding to 'UTF-8'")
difficultstrings <- c("normal", "t\tab", "v\vertical tab", "n\newline", "r carriage \retern", "back \\ slash", "f\form feed")
df <- data.frame(strings=difficultstrings)
dbWriteTable(con, "rockdata", df)
## run a simple query and show the query result
res <- dbGetQuery(con, "select * from rockdata")
print(res)
print("Removing rockdata\n")
dbRemoveTable(con, "rockdata")
difficultstringe <- c("normal", "m\u00fc\u00df")
df <- data.frame(strings=difficultstringe)
tryres <- try({dbWriteTable(con, "rockdata", df)
res <- dbGetQuery(con, "select * from rockdata")
for(n in 1:2){
cat(paste(as.character(n), "\t"))
cat(res[n,2])
cat("\n")
}
print("Removing rockdata\n")
dbRemoveTable(con, "rockdata")
})
if(tryres != TRUE){
cat("FAIL: could not write small umlaut u and ligature sz.\n")
cat(" This might be no problem for you if you don't use those special characters.\n")
cat(" Otherwise, please check for the server encoding.\n")
cat(" Database encoding is usually set at the time of createdb.\n")
cat(" You can see for more information on how to setup at \n")
cat(" http://www.postgresql.org/docs/9.1/static/multibyte.html\n\n")
}else{
cat("PASS: could write small umlaut u and ligature sz\n")
}
difficultstringk <- c("normal", "kanji\u6f22\u5b57")
df <- data.frame(strings=difficultstringk)
tryres <- try({dbWriteTable(con, "rockdata", df)
res <- dbGetQuery(con, "select * from rockdata")
for(n in 1:2){
cat(paste(as.character(n), "\t"))
cat(res[n,2])
cat("\n")
}
print("Removing rockdata\n")
dbRemoveTable(con, "rockdata")
})
if(tryres != TRUE){
cat("FAIL: could not write kanji.\n")
cat(" This might be no problem for you if you don't use multibyte characters.\n")
cat(" Otherwise, please check for the server encoding.\n")
cat(" Database encoding is usually set at the time of createdb.\n")
cat(" You can see for more information on how to setup at \n")
cat(" http://www.postgresql.org/docs/9.1/static/multibyte.html\n\n")
}else{
cat("PASS: could write kanji\n")
}
## cleanup
if (dbExistsTable(con, "rockdata")) {
print("Removing rockdata\n")
dbRemoveTable(con, "rockdata")
}
if (dbExistsTable(con, "tempostgrestable"))
dbRemoveTable(con, "tempostgrestable")
## Test the numeric mapping
dbGetQuery(con, "create table tempostgrestable (intcolumn integer, floatcolumn float);")
i <- as.integer(10)
j <- as.numeric(56.6)
sql <- paste("insert into tempostgrestable ",
"values (",i, "," ,j ,") ", sep="")
res <- dbGetQuery(con, sql)
dat <- dbReadTable(con, "tempostgrestable")
dbRemoveTable(con, "tempostgrestable")
res <- dbWriteTable(con, "numerictable", dat)
dat <- dbReadTable(con, "numerictable")
dbRemoveTable(con, "numerictable")
cat("Read Numeric values\n")
## now test the types of the colums we got
if( class(dat[,1]) == "integer" ) {
cat("PASS -- all integer is as expected\n")
}else{
cat(paste("FAIL -- an integer became ", class(dat[,1]), "\n"))
}
stopifnot( class(dat[,2]) == "numeric" )
## and test the values
if( identical( dat[1,1], i)){
cat("PASS integer value is preserved")
}else{
cat(paste("FAIL:", i, "changed to", dat[1,1], "\n"))
}
stopifnot( identical( dat[1,2], j))
cat("GOOD -- all numeric values are as expected\n")
## Test the logical mapping
if (dbExistsTable(con, "testlogical"))
dbRemoveTable(con, "testlogical")
dbGetQuery(con,"create table testlogical (col1 boolean, col2 boolean)")
i <- as.logical(TRUE)
j <- as.logical(FALSE)
sql <- paste("insert into testlogical ",
"values (",i, "," ,j ,") ", sep="")
res <- dbGetQuery(con, sql);
dat <- dbReadTable(con, "testlogical")
res <- dbWriteTable(con, "logicaltable", dat)
dbRemoveTable(con, "testlogical")
dat2 <- dbReadTable(con,"logicaltable")
dbRemoveTable(con, "logicaltable")
cat("Read Logical values\n")
## now test the types of the colums we got
stopifnot( class(dat2[,1]) == "logical" )
stopifnot( class(dat2[,2]) == "logical" )
cat("GOOD -- all logical types are as expected\n")
## and test the values
stopifnot( identical( dat2[1,1], i))
stopifnot( identical( dat2[1,2], j))
cat("GOOD -- all logical values are as expected\n")
## Test the character mapping
if (dbExistsTable(con, "testchar"))
dbRemoveTable(con, "testchar")
dbGetQuery(con,"create table testchar (code char(3),city varchar(20),country text);")
i <- as.character("IN")
j <- as.character("Hyderabad")
k <- as.character("India")
sql <- paste("insert into testchar ",
"values ('",i,"' , '",j ,"' , '",k,"') ", sep="")
res <- dbGetQuery(con, sql);
dat <- dbReadTable(con, "testchar")
dbRemoveTable(con, "testchar")
dbWriteTable(con, "testchar", dat)
dat <- dbReadTable(con, "testchar")
cat("Read Character values\n")
## now test the types of the colums we got
stopifnot( class(dat[,1]) == "character" )
stopifnot( class(dat[,2]) == "character" )
stopifnot( class(dat[,3]) == "character" )
cat("GOOD -- all character types are as expected\n")
## and test the values
##stopifnot( identical( dat[1,1], i))
stopifnot( identical( dat[1,2], j))
stopifnot( identical( dat[1,3], k))
cat("GOOD -- all character values are as expected\n")
dbRemoveTable(con, "testchar")
dbRemoveTable(con, "tempostgrestable")
## Test the numeric mapping
dbGetQuery(con, "create table tempostgrestable (intcolumn date, floatcolumn timestamp with time zone);")
sql <- paste("insert into tempostgrestable ",
"values ('2011-03-07', '2011-03-07 16:30:39') ")
res <- dbGetQuery(con, sql)
dat <- dbReadTable(con, "tempostgrestable")
dbRemoveTable(con, "tempostgrestable")
dbWriteTable(con, "tempostgrestable2", dat)
dat2 <- dbReadTable(con, "tempostgrestable2")
dbRemoveTable(con, "tempostgrestable2")
cat("Check that read after write gets the same data types\n")
## now test the types of the colums we got
if( class(dat2[1,1]) == "Date" ){
cat("PASS -- Date type is as expected\n")
}else{
cat("FAIL -- Date type is other than Date: ")
cat(class(dat2[1,1]))
cat("\n")
}
if( class(dat2[1,2])[1] == "POSIXct" ){
cat("PASS -- TIMESTAMP is received as POSIXct\n")
}else{
cat("FAIL -- TIMESTAMP is other than POSIXct: ")
cat(class(dat2[1,2]))
cat("\n")
}
dbDisconnect(con)
dbUnloadDriver(drv)
cat("DONE\n")
}
|