-
Notifications
You must be signed in to change notification settings - Fork 530
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ocr_numbers & react: Sync missing tests #2049
Conversation
Tests were already present, just under different names: +[b73ecf8b-4423-4b36-860d-3710bdb8a491] +description = "Numbers separated by empty lines are recognized. Lines are joined by commas." fn numbers_across_multiple_lines_are_joined_by_commas() +[3cce2dbd-01d9-4f94-8fae-419a822e89bb] +description = "Unreadable but correctly sized inputs return ?" fn unrecognized_characters_return_question_mark() +[cb19b733-4e36-4cf9-a4a1-6e6aac808b9a] +description = "Input with a number of lines that is not a multiple of four raises an error" fn input_with_lines_not_multiple_of_four_is_error() +[235f7bd1-991b-4587-98d4-84206eec4cc6] +description = "Input with a number of columns that is not a multiple of three raises an error" fn input_with_columns_not_multiple_of_three_is_error() +[70c338f9-85b1-4296-a3a8-122901cdfde8] +description = "Garbled numbers in a string are replaced with ?" fn replaces_only_garbled_numbers_with_question_mark()
Tests were already present, under slightly different names. In particular this test: +[ada17cb6-7332-448a-b934-e3d7495c13d3] +description = "callbacks do not report already reported values" is called fn callbacks_can_be_called_multiple_times()
description = "callback cells only fire on change" | ||
|
||
[ada17cb6-7332-448a-b934-e3d7495c13d3] | ||
description = "callbacks do not report already reported values" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test has a bizarre name in problem-specifications.
For convenience:
Rust version
#[test]
#[ignore]
fn callbacks_can_be_called_multiple_times() {
let cb = CallbackRecorder::new();
let mut reactor = Reactor::new();
let input = reactor.create_input(1);
let output = reactor
.create_compute(&[CellId::Input(input)], |v| v[0] + 1)
.unwrap();
assert!(
reactor
.add_callback(output, |v| cb.callback_called(v))
.is_some()
);
assert!(reactor.set_value(input, 2));
cb.expect_to_have_been_called_with(3);
assert!(reactor.set_value(input, 3));
cb.expect_to_have_been_called_with(4);
}
Problem specifications
{
"uuid": "ada17cb6-7332-448a-b934-e3d7495c13d3",
"description": "callbacks do not report already reported values",
"property": "react",
"input": {
"cells": [
{
"name": "input",
"type": "input",
"initial_value": 1
},
{
"name": "output",
"type": "compute",
"inputs": ["input"],
"compute_function": "inputs[0] + 1"
}
],
"operations": [
{
"type": "add_callback",
"cell": "output",
"name": "callback1"
},
{
"type": "set_value",
"cell": "input",
"value": 2,
"expect_callbacks": {
"callback1": 3
}
},
{
"type": "set_value",
"cell": "input",
"value": 3,
"expect_callbacks": {
"callback1": 4
}
}
]
},
"expected": {}
}
The procedure is the same in both cases and it matches the name of the rust test, but the problem-specifications description makes me think that there is a missing step.
Perhaps they forgot to add
{
"type": "set_value",
"cell": "input",
"value": 2,
"expect_callbacks_not_to_be_called": [ "callback1" ]
}
What do you think? Am I missing something obvious or should I bring this up in the forum?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that does look pretty weird. Doesn't match the description at all. Go ahead and post on the forum and please cc me.
I'm assuming you just checked that all the tests in the new |
Yep, didn't write a template for these. ocr_numbers wouldn't be difficult but I don't think react would be worth the effort at all. |
No description provided.