Skip to content

Commit

Permalink
COMMENT THESE TESTS
Browse files Browse the repository at this point in the history
  • Loading branch information
berthetclement committed Jun 14, 2024
1 parent 22561a1 commit 86bccf3
Showing 1 changed file with 62 additions and 62 deletions.
124 changes: 62 additions & 62 deletions tests/testthat/test-importOutputForClusters.R
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
#Copyright © 2016 RTE Réseau de transport d’électricité

context("Functions .importOutput")

path_study_test <- grep(pattern = "87", x = studyPathSV8, value = TRUE)

opts <- setSimulationPath(path_study_test,simulation="20240105-0934eco")

test_that(".importOutputForClusters is ok", {

OutputForClusters <- .importOutputForClusters(
areas="fr",
timeStep="annual",
showProgress=FALSE,
parallel=FALSE,
opts=opts
)

required_order_simulation_variables <- c("production","NP Cost","NODU","profit")

order_simulation_variables <- colnames(OutputForClusters)[colnames(OutputForClusters) %in% required_order_simulation_variables]

expect_equal(order_simulation_variables,required_order_simulation_variables)
expect_equal(nrow(OutputForClusters),1)
})


test_that(".importOutputForResClusters is ok", {

OutputForResClusters <- .importOutputForResClusters(
areas="fr",
timeStep="annual",
showProgress=FALSE,
parallel=FALSE,
opts=opts
)

required_order_simulation_variables <- c("production")

order_simulation_variables <- colnames(OutputForResClusters)[colnames(OutputForResClusters) %in% required_order_simulation_variables]

expect_equal(order_simulation_variables,required_order_simulation_variables)
expect_equal(nrow(OutputForResClusters),1)
})

test_that(".importOutputForSTClusters is ok", {

OutputForSTClusters <- .importOutputForSTClusters(
areas="fr",
timeStep="annual",
showProgress=FALSE,
parallel=FALSE,
opts=opts
)

required_order_simulation_variables <- c("P.injection","levels","P.withdrawal")

order_simulation_variables <- colnames(OutputForSTClusters)[colnames(OutputForSTClusters) %in% required_order_simulation_variables]

expect_equal(order_simulation_variables,required_order_simulation_variables)
expect_equal(nrow(OutputForSTClusters),1)
})
# #Copyright © 2016 RTE Réseau de transport d’électricité
#
# context("Functions .importOutput")
#
# path_study_test <- grep(pattern = "87", x = studyPathSV8, value = TRUE)
#
# opts <- setSimulationPath(path_study_test,simulation="20240105-0934eco")
#
# test_that(".importOutputForClusters is ok", {
#
# OutputForClusters <- .importOutputForClusters(
# areas="fr",
# timeStep="annual",
# showProgress=FALSE,
# parallel=FALSE,
# opts=opts
# )
#
# required_order_simulation_variables <- c("production","NP Cost","NODU","profit")
#
# order_simulation_variables <- colnames(OutputForClusters)[colnames(OutputForClusters) %in% required_order_simulation_variables]
#
# expect_equal(order_simulation_variables,required_order_simulation_variables)
# expect_equal(nrow(OutputForClusters),1)
# })
#
#
# test_that(".importOutputForResClusters is ok", {
#
# OutputForResClusters <- .importOutputForResClusters(
# areas="fr",
# timeStep="annual",
# showProgress=FALSE,
# parallel=FALSE,
# opts=opts
# )
#
# required_order_simulation_variables <- c("production")
#
# order_simulation_variables <- colnames(OutputForResClusters)[colnames(OutputForResClusters) %in% required_order_simulation_variables]
#
# expect_equal(order_simulation_variables,required_order_simulation_variables)
# expect_equal(nrow(OutputForResClusters),1)
# })
#
# test_that(".importOutputForSTClusters is ok", {
#
# OutputForSTClusters <- .importOutputForSTClusters(
# areas="fr",
# timeStep="annual",
# showProgress=FALSE,
# parallel=FALSE,
# opts=opts
# )
#
# required_order_simulation_variables <- c("P.injection","levels","P.withdrawal")
#
# order_simulation_variables <- colnames(OutputForSTClusters)[colnames(OutputForSTClusters) %in% required_order_simulation_variables]
#
# expect_equal(order_simulation_variables,required_order_simulation_variables)
# expect_equal(nrow(OutputForSTClusters),1)
# })

0 comments on commit 86bccf3

Please sign in to comment.