inst/examples/saturate/inst/tests/RUnit/tests3/test_saturateRGB3.R

# SVN revision:   
# Date of last change: 2013-11-27
# Last changed by: ccampbell
# 
# Original author: ccampbell
# Copyright Mango Solutions, Chippenham, UK 2013
###############################################################################

test.saturateRGB3 <- function() {
	eg <- matrix((1:9) * 16, nrow = 3)
    
    out1 <- matrix(
        c(  16, 189.107763615295, 48, 
            64, 229.859154929577, 96, 
            112, 242.947525120953, 144), 
        nrow = 3, ncol = 3)
    
	checkEquals(saturateHSV(eg, sat = 20), out1)
    
    out2 <- matrix(
        c(  16, 7.11421098517873, 48, 
            64, 21.3612565445026, 96, 
            112, 42.778505897772, 144), 
        nrow = 3, ncol = 3)
    
	checkEquals(saturateHSV(eg, sat = 0.2), out2)
    
	checkEquals(saturateHSV(eg), eg)

}


test.saturateRGB3.remaining <- function() {
	eg1 <- matrix((1:6) * 32, nrow = 2, ncol = 3)
    
	checkException(saturateHSV(eg1, fixed = 0.5), silent = TRUE)

    eg2 <- matrix(letters[1:6], nrow = 3, ncol = 2)
    
	checkException(saturateHSV(eg2, sat = 2), silent = TRUE)

    eg3 <- matrix((1:6) * 32, nrow = 3, ncol = 2)
    
	checkException(saturateHSV(eg3, sat = NA), silent = TRUE)
	
	checkException(saturateHSV(eg3, fixed = NA), silent = TRUE)
    
    out5 <- matrix(c(32, 0, 96, 128, 0, 192), nrow = 3)
    
	checkEquals(saturateHSV(eg3, fixed = -1), out5)
    
    out6 <- matrix(c(32, 255, 96, 128, 255, 192), nrow = 3)
    
	checkEquals(saturateHSV(eg3, fixed = 2), out6)
    
    eg7 <- matrix(c(123, -101, 55, 123, 101, 55, 123, 356, 55), nrow = 3, ncol = 3)
    
    out7 <- matrix(c(
            123, 0.509490509490509, 55, 
            123, 144.691011235955, 55, 
            123, 254.872436218109, 55), nrow = 3)
    
	checkEquals(saturateHSV(eg7, sat = 2), out7)

}
MangoTheCat/testCoverage documentation built on May 7, 2019, 2:24 p.m.