X-Git-Url: https://git.auder.net/?p=talweg.git;a=blobdiff_plain;f=pkg%2Ftests%2Ftestthat%2Ftest.computeFilaments.R;h=34e07f766dc1ac0d68c233dfc4b423d2c045f193;hp=e8f87521e13d14dcb3108e6197b99dfe8a040dd2;hb=98e958cab563866f8e00886b54336018a2e8bc97;hpb=6d97bfecf7310ed6682eecce1b7aa2f8185d4742 diff --git a/pkg/tests/testthat/test.computeFilaments.R b/pkg/tests/testthat/test.computeFilaments.R index e8f8752..34e07f7 100644 --- a/pkg/tests/testthat/test.computeFilaments.R +++ b/pkg/tests/testthat/test.computeFilaments.R @@ -1,7 +1,13 @@ context("Check that computeFilaments behaves as expected") -getDataTest = function(n, shift) +#shorthand: map 1->1, 2->2, 3->3, 4->1, ..., 149->2, 150->3 +I = function(i) + (i-1) %% 3 + 1 + +#MOCK data; NOTE: could be in inst/testdata as well +getDataTest = function(n) { + data = Data$new() x = seq(0,10,0.1) L = length(x) s1 = cos(x) @@ -14,90 +20,61 @@ getDataTest = function(n, shift) series = list() for (i in seq_len(n)) { - index = (i%%3) + 1 - level = mean(s[[index]]) - serie = s[[index]] - level + rnorm(L,sd=0.05) + serie = s[[I(i)]] + rnorm(L,sd=0.01) + level = mean(serie) + serie = serie - level # 10 series with NAs for index 2 - if (index == 2 && i >= 60 && i<= 90) + if (I(i) == 2 && i >= 60 && i<= 90) serie[sample(seq_len(L),1)] = NA - series[[i]] = list("level"=level,"serie"=serie) #no need for more - } - if (shift) - { - # Simulate shift at origin when predict_at > 0 - series[2:(n+1)] = series[1:n] - series[[1]] = list("level"=0, "serie"=s[[1]][1:(L%/%2)]) + data$append(c(), serie, level, c(), c()) #no need for more } - new("Data", data=series) + data } test_that("output is as expected on simulated series", { - data = getDataTest(150, FALSE) - - # index 142 : serie type 2 - f = computeFilaments(data, 142, limit=60, plot=FALSE) - # Expected output: 22 series of type 3 (closer), then 50-2-10 series of type 2 - expect_identical(length(f$indices), 60) - expect_identical(length(f$colors), 60) - for (i in 1:22) - { - expect_identical((f$indices[i] %% 3) + 1, 3) - expect_match(f2$colors[i], f$colors[1]) - } - for (i in 23:60) - { - expect_identical((f$indices[i] %% 3) + 1, 2) - expect_match(f2$colors[i], f$colors[23]) - } - expect_match(colors[1], "...") - expect_match(colors[23], "...") -}) + data = getDataTest(150) -test_that("output is as expected on simulated series", -{ - data = getDataTest(150, TRUE) + # index 143 : serie type 2 + f = computeFilaments(data, 143, limit=60, plot=FALSE) - # index 143 : serie type 3 - f = computeFilaments(data, 143, limit=70, plot=FALSE) - # Expected output: 22 series of type 2 (closer) then 50-2 series of type 3 - expect_identical(length(f$indices), 70) - expect_identical(length(f$colors), 70) - for (i in 1:22) + # Expected output: 50-3-10 series of type 2, then 23 series of type 3 (closest next) + expect_identical(length(f$neighb_indices), as.integer(60)) + expect_identical(length(f$colors), as.integer(60)) + expect_equal(f$index, 143) + expect_true(all(I(f$neighb_indices) >= 2)) + for (i in 1:37) { - # -1 because of the initial shift - expect_identical(( (f$indices[i]-1) %% 3 ) + 1, 2) + expect_equal(I(f$neighb_indices[i]), 2) expect_match(f$colors[i], f$colors[1]) } - for (i in 23:70) + for (i in 38:60) { - expect_identical(( (f$indices[i]-1) %% 3 ) + 1, 3) - expect_match(f$colors[i], f$colors[23]) + expect_equal(I(f$neighb_indices[i]), 3) + expect_match(f$colors[i], f$colors[38]) } - expect_match(colors[1], "...") - expect_match(colors[23], "...") -}) + expect_match(f$colors[1], "#1*") + expect_match(f$colors[38], "#E*") -test_that("output is as expected on simulated series", -{ - data = getDataTest(150, TRUE) + # index 142 : serie type 1 + f = computeFilaments(data, 142, limit=50, plot=FALSE) - # index 144 : serie type 1 - f = computeFilaments(data, 144, limit=50, plot=FALSE) - # Expected output: 2 series of type 3 (closer), then 50-2 series of type 1 - expect_identical(length(f$indices), 50) - expect_identical(length(f$colors), 50) - for (i in 1:2) + # Expected output: 50-10-3 series of type 1, then 13 series of type 3 (closest next) + # NOTE: -10 because only past days with no-NAs tomorrow => exclude type 1 in [60,90[ + expect_identical(length(f$neighb_indices), as.integer(50)) + expect_identical(length(f$colors), as.integer(50)) + expect_equal(f$index, 142) + expect_true(all(I(f$neighb_indices) != 2)) + for (i in 1:37) { - # -1 because of the initial shift - expect_identical(( (f$indices[i]-1) %% 3 ) + 1, 3) + expect_equal(I(f$neighb_indices[i]), 1) expect_match(f$colors[i], f$colors[1]) } - for (i in 3:50) + for (i in 38:50) { - expect_identical(( (f$indices[i]-1) %% 3 ) + 1, 1) - expect_match(f$colors[i], f$colors[3]) + expect_equal(I(f$neighb_indices[i]), 3) + expect_match(f$colors[i], f$colors[38]) } - expect_match(colors[1], "...") - expect_match(colors[3], "...") + expect_match(f$colors[1], "#1*") + expect_match(f$colors[38], "#E*") })