prosesmasher-app-core 0.1.7

Internal core checks crate for the prosesmasher workspace. Published to support the workspace dependency graph.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
use crate::check::Check;
use low_expectations::ExpectationSuite;
use prosesmasher_domain_types::{
    Block, CheckConfig, Document, DocumentMetadata, Locale, Paragraph, Section, Sentence,
    Word,
};

fn make_sentences(texts: &[&str]) -> Vec<Sentence> {
    texts
        .iter()
        .map(|t| {
            let words: Vec<Word> = t
                .split_whitespace()
                .map(|w| Word {
                    text: w.to_owned(),
                    syllable_count: 1,
                })
                .collect();
            Sentence {
                text: (*t).to_owned(),
                words,
            }
        })
        .collect()
}

fn make_doc_with_sentences(texts: &[&str], locale: Locale) -> Document {
    let sentences = make_sentences(texts);
    let word_count: usize = sentences.iter().map(|s| s.words.len()).sum();
    Document {
        locale,
        sections: vec![Section {
            heading: None,
            blocks: vec![Block::Paragraph(Paragraph {
                sentences,
                has_bold: false,
                has_italic: false,
                links: vec![],
            })],
        }],
        metadata: DocumentMetadata {
            total_words: word_count,
            total_sentences: texts.len(),
            ..Default::default()
        },
    }
}

fn config_with_signals() -> CheckConfig {
    CheckConfig::default()
}

#[test]
fn negation_reframe_detected() {
    let doc = make_doc_with_sentences(
        &["This isn't defiance.", "It's developmental."],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(
        result.statistics.unsuccessful_expectations, 1,
        "negation + reframe pair should fail"
    );
    let vr = result.results.get("negation-reframe");
    assert!(vr.is_some(), "negation-reframe result should exist");
    if let Some(vr) = vr {
        let evidence = vr.result.partial_unexpected_list.as_ref();
        assert!(evidence.is_some(), "evidence should be present");
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("matched_text"))
            .and_then(serde_json::Value::as_str), Some("not y -> x"), "matched pattern");
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("sentence"))
            .and_then(serde_json::Value::as_str), Some("This isn't defiance."), "first sentence");
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("next_sentence"))
            .and_then(serde_json::Value::as_str), Some("It's developmental."), "second sentence");
    }
}

#[test]
fn inline_corrective_detected() {
    let doc = make_doc_with_sentences(
        &["The goal is corrective contrast, not generic negation."],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(
        result.statistics.unsuccessful_expectations, 1,
        "inline x-not-y contrast should fail"
    );
    let vr = result.results.get("negation-reframe");
    assert!(vr.is_some(), "negation-reframe result should exist");
    if let Some(vr) = vr {
        let evidence = vr.result.partial_unexpected_list.as_ref();
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("matched_text"))
            .and_then(serde_json::Value::as_str), Some("x, not y"), "inline pattern");
    }
}

#[test]
fn action_negation_narration_does_not_trigger() {
    let doc = make_doc_with_sentences(
        &[
            "I could not fix the banana.",
            "My second instinct was to explain that bananas sometimes break and this is fine and we can eat both pieces.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(
        result.statistics.successful_expectations, 1,
        "action negation plus narration should pass"
    );
    assert_eq!(
        result.statistics.unsuccessful_expectations, 0,
        "banana-style narrative pair must not fail"
    );
}

#[test]
fn infinitive_contrast_detected() {
    let doc = make_doc_with_sentences(
        &[
            "Not to act on the anger.",
            "To notice you're assembling a bonfire and stop adding to it.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
    let vr = result.results.get("negation-reframe");
    assert!(vr.is_some());
    if let Some(vr) = vr {
        let evidence = vr.result.partial_unexpected_list.as_ref();
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("matched_text"))
            .and_then(serde_json::Value::as_str), Some("not to x -> to y"));
    }
}

#[test]
fn meaning_contrast_detected() {
    let doc = make_doc_with_sentences(
        &[
            "That does not mean you're failing.",
            "It means your alarm system is miscalibrated.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
    let vr = result.results.get("negation-reframe");
    assert!(vr.is_some());
    if let Some(vr) = vr {
        let evidence = vr.result.partial_unexpected_list.as_ref();
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("matched_text"))
            .and_then(serde_json::Value::as_str), Some("does not x -> it xs"));
    }
}

#[test]
fn same_root_framing_contrast_detected() {
    let doc = make_doc_with_sentences(
        &[
            "That does not reflect defiance.",
            "It reflects overload.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
}

#[test]
fn same_root_non_framing_pair_does_not_trigger() {
    let doc = make_doc_with_sentences(
        &[
            "That does not make the tantrums fun.",
            "It does make them easier to read.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 0);
}

#[test]
fn technical_explanation_without_same_root_does_not_trigger() {
    let doc = make_doc_with_sentences(
        &[
            "That does not mean the server is healthy.",
            "It needs a deeper health check.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 0);
}

#[test]
fn internal_state_expression_contrast_detected() {
    let doc = make_doc_with_sentences(
        &[
            "Kids who learn that crying gets no response don't stop having feelings.",
            "They stop showing them.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
    let vr = result.results.get("negation-reframe");
    assert!(vr.is_some());
    if let Some(vr) = vr {
        let evidence = vr.result.partial_unexpected_list.as_ref();
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("matched_text"))
            .and_then(serde_json::Value::as_str), Some("don't x -> they y"));
    }
}

#[test]
fn normal_behavioral_followup_does_not_trigger() {
    let doc = make_doc_with_sentences(
        &[
            "Children don't stop at the corner.",
            "They turn left instead.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 0);
}

#[test]
fn narrative_frame_contrast_detected() {
    let doc = make_doc_with_sentences(
        &[
            "It doesn't begin the story.",
            "It ends the buildup.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
    let vr = result.results.get("negation-reframe");
    assert!(vr.is_some());
    if let Some(vr) = vr {
        let evidence = vr.result.partial_unexpected_list.as_ref();
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("matched_text"))
            .and_then(serde_json::Value::as_str), Some("doesn't begin x -> it ends y"));
    }
}

#[test]
fn shared_progressive_corrective_detected() {
    let doc = make_doc_with_sentences(
        &[
            "I was not living with a tiny chaos agent who woke up each day searching for weak points in my character.",
            "I was living with a child who keeps hitting the edge of her capacity and does not know that is what is happening.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
}

#[test]
fn explicit_make_contrast_detected() {
    let doc = make_doc_with_sentences(
        &[
            "That doesn't make the meltdowns fun.",
            "But it makes them something I can read.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
    let vr = result.results.get("negation-reframe");
    assert!(vr.is_some());
    if let Some(vr) = vr {
        let evidence = vr.result.partial_unexpected_list.as_ref();
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("matched_text"))
            .and_then(serde_json::Value::as_str), Some("doesn't make x -> but it makes y"));
    }
}

#[test]
fn less_more_like_pair_detected() {
    let doc = make_doc_with_sentences(
        &[
            "Less like a judge.",
            "More like someone who got there late and is trying to understand what happened before she arrived.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
}

#[test]
fn ordinary_begin_end_pair_does_not_trigger() {
    let doc = make_doc_with_sentences(
        &[
            "The meeting doesn't begin on time.",
            "It ends at five.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 0);
}

#[test]
fn lifecycle_frame_reversal_detected() {
    let doc = make_doc_with_sentences(
        &[
            "And when I miss the signs I try to remember that the screaming doesn't begin the story.",
            "It ends the buildup.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1);
    let vr = result.results.get("negation-reframe");
    assert!(vr.is_some());
    if let Some(vr) = vr {
        let evidence = vr.result.partial_unexpected_list.as_ref();
        assert_eq!(evidence.and_then(|e| e.first())
            .and_then(|item| item.get("matched_text"))
            .and_then(serde_json::Value::as_str), Some("doesn't begin x -> it ends y"));
    }
}

#[test]
fn no_pattern_passes() {
    let doc = make_doc_with_sentences(
        &[
            "It works more like a philosophy than a tool.",
            "The approach is unconventional.",
        ],
        Locale::En,
    );
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(
        result.statistics.successful_expectations, 1,
        "no negation-reframe pair should pass"
    );
}

#[test]
fn default_config_runs() {
    let doc = make_doc_with_sentences(
        &["This isn't defiance.", "It's developmental."],
        Locale::En,
    );
    let config = CheckConfig::default();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(
        result.statistics.unsuccessful_expectations, 1,
        "default negation/reframe patterns should run"
    );
}

#[test]
fn check_id_and_label() {
    let check = super::NegationReframeCheck;
    assert_eq!(check.id(), "negation-reframe");
    assert_eq!(check.label(), "Negation-Reframe Pattern");
    assert!(check.supported_locales().is_none());
}

#[test]
fn negation_reframe_inside_blockquote_detected() {
    let sentences = make_sentences(&["This isn't defiance.", "It's developmental."]);
    let doc = Document {
        locale: Locale::En,
        sections: vec![Section {
            heading: None,
            blocks: vec![Block::BlockQuote(vec![Block::Paragraph(Paragraph {
                sentences,
                has_bold: false,
                has_italic: false,
                links: vec![],
            })])],
        }],
        metadata: DocumentMetadata::default(),
    };
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    assert_eq!(result.statistics.unsuccessful_expectations, 1,
        "negation-reframe inside blockquote must be detected");
}

#[test]
fn code_block_ignored() {
    let doc = Document {
        locale: Locale::En,
        sections: vec![Section {
            heading: None,
            blocks: vec![Block::CodeBlock("This isn't code. It's fine.".to_owned())],
        }],
        metadata: DocumentMetadata::default(),
    };
    let config = config_with_signals();
    let mut suite = ExpectationSuite::new("test");
    super::NegationReframeCheck.run(&doc, &config, &mut suite);
    let result = suite.into_suite_result();
    // The check always emits one expectation (match_count between 0-0).
    // Code block content is correctly skipped, so match_count=0 → passes.
    assert_eq!(result.statistics.successful_expectations, 1,
        "code block content ignored → 0 matches → pass");
    assert_eq!(result.statistics.unsuccessful_expectations, 0,
        "no failures from code block");
}