Skip to content

Instantly share code, notes, and snippets.

<style>
.tinytest {background-color: black; color:white; font-family:monospace}
.tinytest div {margin-left: 1em}
.tinyTest .pass {color:green;}
.tinyTest .fail {color:red;}
.tinyTest .error {background-color:red; color:black}
</style>
<cfscript>
tinyTest = {
@adamcameron
adamcameron / testContext.cfm
Last active May 9, 2022 13:24
testing how to deal with beforeEach / afterEach
<style>
.tinytest {background-color: black; color:white; font-family:monospace}
.tinytest div {margin-left: 1em}
.tinyTest .pass {color:green;}
.tinyTest .fail {color:red;}
.tinyTest .error {background-color:red; color:black}
</style>
<cfscript>
baseContext = []
<style>
.tinytest {background-color: black; color:white; font-family:monospace}
.tinytest div {margin-left: 1em}
.tinyTest .pass {color:green;}
.tinyTest .fail {color:red;}
.tinyTest .error {background-color:red; color:black}
</style>
<cfscript>
tinyTest = {
<cfscript>
// tests
void function run() {
beforeAll(() => {
tinyTest.debug.setByBeforeAll = true
})
describe("Tests of TinyTestFramework", () => {
describe("Tests of it", () => {
it("prefixes its message with ""It""", () => {
@adamcameron
adamcameron / test.cfm
Created May 1, 2022 17:58
CF playing silly buggers with doubles
<cfscript>
i = 0
f = 0.0
d = createObject("java", "java.lang.Double").init(0)
writeDump([
i = [
i = i,
"i === i" = i === i,
"i.equals(i)" = i.equals(i),
<cfscript>
s1 = "ABCDEF".mid(1,3)
s2 = "DEFABC".mid(4,6)
writeOutput(s1 & "<br>") // ABC
writeOutput(s2 & "<br>") // ABC
writeOutput("<br>")
writeOutput((s1 == s2) & "<br>") // true
writeOutput((s1 === s2) & "<br>") // true (FALSE ON LUCEE)
@adamcameron
adamcameron / AssertionsTest.cfc
Last active April 18, 2022 14:13
Tests for probable bug with notToThrow assertion.
import test.BaseSpec
component extends=BaseSpec {
function run() {
describe("Tests TestBox assertions", () => {
describe("Tests toThrow", () => {
it("should pass because it DOES throw an exception with the matching message", () => {
expect(() => throwExceptionWithMatchingMessage()).toThrow(regex="^.*MATCH_THIS.*$")
})
@adamcameron
adamcameron / luceeCfftpScopingBug.cfm
Created April 8, 2022 18:06
Demonstrates what seems to be a bug in how Lucee scopes the cfftp variable when in modern mode: it still goes in the variables scope.
<cfscript>
serverDetails = {
server="ftp.dlptest.com",
username="dlpuser",
password="rNrKYTX9g7z3RgJRmxWuGHbeu"
}
function usingClassicMode() localmode="classic" {
cfftp(connection="c1", action="open", attributeCollection=serverDetails)
cfftp(connection="c2", action="open", attributeCollection=serverDetails, result="c2ConnectionResult")
@adamcameron
adamcameron / CaptureStdOutTest.cfc
Created March 23, 2022 21:07
Example tests for Brad
import test.BaseSpec
component extends=BaseSpec {
function run() {
describe("Trying to capture stdout", () => {
var fixtures = {}
aroundEach((spec) => {
@adamcameron
adamcameron / BaseSpec.ccfc
Created March 17, 2022 13:48
TestBox request.testbox.debug fix
// CHANGES ONLY
component {
// ...
// Setup Request Utilities
if ( !request.keyExists( "testbox" ) ) {
request.testbox = {
"console" : variables.console,
"debug" : () => debugFixed(argumentCollection=arguments, thisContext=this), // FIXED