fn runner() -> crate::TestRunner {
super::runner().with_cwd("atan")
}
#[test]
fn case_insensitive() {
assert_eq!(
runner().ok("a {b: AtAn(1)}\n"),
"a {\
\n b: 45deg;\
\n}\n"
);
}
mod error {
use super::runner;
#[test]
#[ignore] fn sass_script() {
assert_eq!(
runner().err("a {b: atan(7 % 3)}\n"),
"Error: This operation can\'t be used in a calculation.\
\n ,\
\n1 | a {b: atan(7 % 3)}\
\n | ^\
\n \'\
\n input.scss 1:14 root stylesheet",
);
}
#[test]
fn too_few_args() {
assert_eq!(
runner().err("a {b: atan()}\n"),
"Error: Missing argument.\
\n ,\
\n1 | a {b: atan()}\
\n | ^^^^^^\
\n \'\
\n input.scss 1:7 root stylesheet",
);
}
#[test]
fn too_many_args() {
assert_eq!(
runner().err("a {b: atan(0, 0)}\n"),
"Error: Only 1 argument allowed, but 2 were passed.\
\n ,\
\n1 | a {b: atan(0, 0)}\
\n | ^^^^^^^^^^\
\n \'\
\n input.scss 1:7 root stylesheet",
);
}
#[test]
#[ignore] fn test_type() {
assert_eq!(
runner().err("a {b: atan(\"0\")}\n"),
"Error: This expression can\'t be used in a calculation.\
\n ,\
\n1 | a {b: atan(\"0\")}\
\n | ^^^\
\n \'\
\n input.scss 1:12 root stylesheet",
);
}
mod unit {
use super::runner;
#[test]
fn complex() {
assert_eq!(
runner().err("a {b: atan(-7px / 4em)}\n"),
"Error: Expected calc(-1.75px / 1em) to have no units.\
\n ,\
\n1 | a {b: atan(-7px / 4em)}\
\n | ^^^^^^^^^^^^^^^^\
\n \'\
\n input.scss 1:7 root stylesheet",
);
}
#[test]
fn known() {
assert_eq!(
runner().err("a {b: atan(1px)}\n"),
"Error: Expected 1px to have no units.\
\n ,\
\n1 | a {b: atan(1px)}\
\n | ^^^^^^^^^\
\n \'\
\n input.scss 1:7 root stylesheet",
);
}
#[test]
fn unknown() {
assert_eq!(
runner().err("a {b: atan(1%)}\n"),
"Error: Expected 1% to have no units.\
\n ,\
\n1 | a {b: atan(1%)}\
\n | ^^^^^^^^\
\n \'\
\n input.scss 1:7 root stylesheet",
);
}
}
}
#[test]
fn infinity() {
assert_eq!(
runner().ok("a {b: atan(infinity)}\n"),
"a {\
\n b: 90deg;\
\n}\n"
);
}
#[test]
fn negative_infinity() {
assert_eq!(
runner().ok("a {b: atan(-infinity)}\n"),
"a {\
\n b: -90deg;\
\n}\n"
);
}
#[test]
fn one() {
assert_eq!(
runner().ok("a {b: atan(1)}\n"),
"a {\
\n b: 45deg;\
\n}\n"
);
}
#[test]
fn overridden() {
assert_eq!(
runner().ok("@function atan($arg) {@return $arg}\
\na {b: atan(1)}\n"),
"a {\
\n b: 1;\
\n}\n"
);
}
#[test]
fn simplification() {
assert_eq!(
runner().ok("a {\
\n b: atan(3px - 1px + var(--c));\
\n}\n"),
"a {\
\n b: atan(2px + var(--c));\
\n}\n"
);
}
#[test]
fn zero() {
assert_eq!(
runner().ok("a {b: atan(0)}\n"),
"a {\
\n b: 0deg;\
\n}\n"
);
}