about summary refs log blame commit diff
path: root/users/tazjin/rlox/src/bytecode/tests.rs
blob: d02f021ff0fd7d0268968d6dede452de32b8cf9b (plain) (tree)
1
2
3
4
5
6
7
8
9
                        



               
                                     


                                      




                                       



              

                               




                                                    

                                 



            





                                      



              



                                       



                 


                                                                
 






                                        








                                        
use super::value::Value;
use super::*;

use crate::Lox;

fn expect(code: &str, value: Value) {
    let result = Interpreter::create()
        .interpret(code.into())
        .expect("evaluation failed");
    assert_eq!(result, value);
}

fn expect_num(code: &str, value: f64) {
    expect(code, Value::Number(value))
}

#[test]
fn numbers() {
    expect_num("1", 1.0);
    expect_num("13.37", 13.37);
}

#[test]
fn negative_numbers() {
    // Note: This technically tests unary operators.
    expect_num("-1", -1.0);
    expect_num("-13.37", -13.37);
}

#[test]
fn terms() {
    expect_num("1 + 2", 3.0);
    expect_num("3 - 1", 2.0);
    expect_num("0.7 + 0.3", 1.0);
    expect_num("1 + -3", -2.0);
    expect_num("-1 - -1", 0.0);
    expect_num("10 - -10 + 10", 30.0);
}

#[test]
fn factors() {
    expect_num("1 * 2", 2.0);
    expect_num("10 / 5", 2.0);
    expect_num("0.7 * 4 / 1.4", 2.0);
    expect_num("10 * -10 / 10", -10.0);
}

#[test]
fn arithmetic() {
    expect_num("10 - 3 * 2", 4.0);
    expect_num("-4 * -4 + (14 - 5)", 25.0);
    expect_num("(702 + 408) - ((239 - 734) / -5) + -4", 1007.0);
}

#[test]
fn trivial_literals() {
    expect("true", Value::Bool(true));
    expect("false", Value::Bool(false));
    expect("nil", Value::Nil);
}

#[test]
fn negation() {
    expect("!true", Value::Bool(false));
    expect("!false", Value::Bool(true));
    expect("!nil", Value::Bool(true));
    expect("!13.5", Value::Bool(false));
    expect("!-42", Value::Bool(false));
}