# Copyright (C) 2015-2016 Bart Smeets and Iñaki Ucar # Copyright (C) 2016-2023 Iñaki Ucar # # This file is part of simmer. # # simmer 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 2 of the License, or # (at your option) any later version. # # simmer 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 simmer. If not, see . test_that("only valid types can be passed to functions", { expect_error(trajectory() %>% set_attribute("test", "string_value")) expect_error(trajectory() %>% set_attribute("test", NA)) expect_error(trajectory() %>% set_attribute(NA, 1)) expect_error(trajectory() %>% set_attribute("test", 1, mod="asdf")) t0 <- trajectory() %>% set_attribute(c("a", "b", "c"), c(1, 2)) env <- simmer(verbose = env_verbose) %>% add_generator("entity", t0, at(0)) expect_error(run(env)) }) test_that("an arrival attribute is correctly set and returned to a function", { t0 <- trajectory() %>% set_attribute( c("att1", "att2"), c(1, 2) ) %>% timeout(1) %>% set_global( function() c("glb1", "glb2"), c(1, 2) ) %>% timeout(1) %>% set_attribute( c("att3", "att4"), function() get_attribute(env, c("att1", "att2")) ) %>% timeout(1) %>% set_global( function() c("glb3", "glb4"), function() get_global(env, c("glb1", "glb2")) ) %>% log_(function() paste0(get_attribute(env, "att1"), get_attribute(env, "asdf"), get_global(env, "glb1"), get_global(env, "asdf"))) %>% timeout(1) %>% set_attribute( c("att3", "att4"), c(5, 5), mod="+" ) %>% timeout(1) %>% set_global( function() c("glb3", "glb4"), c(5, 5), mod="*" ) env <- simmer(verbose = env_verbose) %>% add_generator("entity", t0, at(0), mon=2) expect_output(run(env), ".*1NA1NA") attributes <- env %>% get_mon_attributes() expect_equal(nrow(attributes), 12) expect_equal(attributes$time, rep(0:5, each=2)) expect_equal(attributes$name, rep(c("entity0", ""), each=2, times=3)) keys <- c(1, 2, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4) values <- c(1, 2, 1, 2, 1, 2, 1, 2, 6, 7, 5, 10) expect_equal(attributes$key, paste0(rep(c("att", "glb"), each=2, times=2), keys)) expect_equal(attributes$value, values) }) test_that("the attribute dataframe is returned with the expected columns", { t0 <- trajectory() %>% set_attribute("test", 123) %>% set_global("test", 456) env <- simmer(verbose = env_verbose) %>% add_generator("entity", t0, at(0), mon = 1) %>% run() attributes <- env %>% get_mon_attributes() expect_true(all(sapply(colnames(attributes), function(x) x %in% colnames(attributes)))) }) test_that("arrival attributes are returned empty when mon level is < 2", { t0 <- trajectory() %>% set_attribute("test", 123) %>% set_global("test", 456) env <- simmer(verbose = env_verbose) %>% add_generator("entity", t0, at(0), mon = 1) %>% run() attributes <- env %>% get_mon_attributes() expect_equal(nrow(attributes), 1) expect_equal(attributes[1, ]$name, "") expect_equal(attributes[1, ]$key, "test") expect_equal(attributes[1, ]$value, 456) }) test_that("attributes are automatically initialised with modifiers", { t <- trajectory() %>% set_attribute("asdf", 1, mod="+") %>% set_global("fdsa", 2, mod="+", init=3) attr <- simmer() %>% add_generator("dummy", t, at(0), mon=2) %>% run() %>% get_mon_attributes() expect_equal(attr$value, c(1, 5)) }) test_that("get_global works outside a trajectory", { expect_equal(get_global(simmer(), "test"), NA_real_) })