hurl 8.0.0

Hurl, run and test HTTP requests
Documentation
/*
 * Hurl (https://hurl.dev)
 * Copyright (C) 2026 Orange
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *          http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
use hurl_core::ast::SourceInfo;

use crate::runner::{RunnerError, RunnerErrorKind, Value};

/// Returns the last item in a collection `value`.
pub fn eval_last(
    value: &Value,
    source_info: SourceInfo,
    assert: bool,
) -> Result<Option<Value>, RunnerError> {
    match value {
        Value::List(values) => match values.last().cloned() {
            Some(last_value) => Ok(Some(last_value)),
            None => {
                let kind = RunnerErrorKind::FilterInvalidInputValue("list is empty".to_string());
                Err(RunnerError::new(source_info, kind, assert))
            }
        },
        v => {
            let kind = RunnerErrorKind::FilterInvalidInputType {
                actual: v.kind().to_string(),
                expected: "list".to_string(),
            };
            Err(RunnerError::new(source_info, kind, assert))
        }
    }
}

#[cfg(test)]
mod tests {
    use hurl_core::ast::{Filter, FilterValue, SourceInfo};
    use hurl_core::reader::Pos;

    use super::*;
    use crate::runner::filter::eval::eval_filter;
    use crate::runner::{Number, VariableSet};

    fn new_last_filter() -> Filter {
        Filter {
            source_info: SourceInfo::new(Pos::new(1, 1), Pos::new(1, 4)),
            value: FilterValue::Last,
        }
    }

    #[test]
    fn eval_filter_last_ok() {
        let variables = VariableSet::new();

        let filter = new_last_filter();

        let ret = eval_filter(
            &filter,
            &Value::List(vec![
                Value::Number(Number::Integer(1)),
                Value::Number(Number::Integer(3)),
                Value::Number(Number::Integer(5)),
            ]),
            &variables,
            false,
        );

        assert_eq!(ret.unwrap().unwrap(), Value::Number(Number::Integer(5)));
    }

    #[test]
    fn eval_filter_last_ko_empty_list() {
        let variables = VariableSet::new();

        let filter = new_last_filter();

        let ret = eval_filter(&filter, &Value::List(vec![]), &variables, false);

        assert_eq!(
            ret.unwrap_err().kind,
            RunnerErrorKind::FilterInvalidInputValue("list is empty".to_string())
        );
    }

    #[test]
    fn eval_filter_last_ko_invalid_input() {
        let variables = VariableSet::new();

        let filter = new_last_filter();

        let ret = eval_filter(&filter, &Value::Bool(true), &variables, false);

        assert_eq!(
            ret.unwrap_err().kind,
            RunnerErrorKind::FilterInvalidInputType {
                actual: "boolean".to_string(),
                expected: "list".to_string()
            }
        );
    }
}