summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/extensions/bayesian-spam-filter/test/unit/test_junkAsTraits.js
blob: a1800b93e7576b809313b3f03ed8dfa6015d420e (plain)
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// tests calls to the bayesian filter plugin to train, classify, and forget
// messages using both the older junk-oriented calls, as well as the newer
// trait-oriented calls. Only a single trait is tested. The main intent of
// these tests is to demonstrate that both the old junk-oriented calls and the
// new trait-oriented calls give the same results on junk processing.

var { MailServices } = ChromeUtils.import(
  "resource:///modules/MailServices.jsm"
);

// local constants
var kUnclassified = MailServices.junk.UNCLASSIFIED;
var kJunk = MailServices.junk.JUNK;
var kGood = MailServices.junk.GOOD;
var kJunkTrait = MailServices.junk.JUNK_TRAIT;
var kGoodTrait = MailServices.junk.GOOD_TRAIT;
var kIsHamScore = MailServices.junk.IS_HAM_SCORE;
var kIsSpamScore = MailServices.junk.IS_SPAM_SCORE;

// command functions for test data
var kTrainJ = 0; // train using junk method
var kTrainT = 1; // train using trait method
var kClassJ = 2; // classify using junk method
var kClassT = 3; // classify using trait method
var kForgetJ = 4; // forget training using junk method
var kForgetT = 5; // forget training using trait method
var kCounts = 6; // test token and message counts

var gProArray = [],
  gAntiArray = []; // traits arrays, pro is junk, anti is good
var gTest; // currently active test

// The tests array defines the tests to attempt. Format of
// an element "test" of this array (except for kCounts):
//
//   test.command: function to perform, see definitions above
//   test.fileName: file containing message to test
//   test.junkPercent: sets the classification (for Class or Forget commands)
//                     tests the classification (for Class commands)
//                     As a special case for the no-training tests, if
//                     junkPercent is negative, test its absolute value
//                     for percents, but reverse the junk/good classification
//   test.traitListener: should we use the trait listener call?
//   test.junkListener: should we use the junk listener call?

var tests = [
  // test the trait-based calls. We mix trait listeners, junk listeners,
  // and both

  {
    // with no training, percents is 50 - but classifies as junk
    command: kClassT,
    fileName: "ham1.eml",
    junkPercent: -50, // negative means classifies as junk
    traitListener: false,
    junkListener: true,
  },
  {
    // train 1 ham message
    command: kTrainT,
    fileName: "ham1.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    // with ham but no spam training, percents are 0 and classifies as ham
    command: kClassT,
    fileName: "ham1.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    // train 1 spam message
    command: kTrainT,
    fileName: "spam1.eml",
    junkPercent: 100,
    traitListener: true,
    junkListener: false,
  },
  {
    // the trained messages will classify at 0 and 100
    command: kClassT,
    fileName: "ham1.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassT,
    fileName: "spam1.eml",
    junkPercent: 100,
    traitListener: true,
    junkListener: false,
  },
  {
    // ham2, spam2, spam4 give partial percents, but still ham
    command: kClassT,
    fileName: "ham2.eml",
    junkPercent: 8,
    traitListener: true,
    junkListener: true,
  },
  {
    command: kClassT,
    fileName: "spam2.eml",
    junkPercent: 81,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassT,
    fileName: "spam4.eml",
    junkPercent: 81,
    traitListener: true,
    junkListener: false,
  },
  {
    // spam3 evaluates to spam
    command: kClassT,
    fileName: "spam3.eml",
    junkPercent: 98,
    traitListener: true,
    junkListener: true,
  },
  {
    // train ham2, then test percents of 0 (clearly good)
    command: kTrainT,
    fileName: "ham2.eml",
    junkPercent: 0,
    traitListener: true,
    junkListener: true,
  },
  {
    command: kClassT,
    fileName: "ham2.eml",
    junkPercent: 0,
    traitListener: true,
    junkListener: true,
  },
  {
    // forget ham2, percents should return to partial value
    command: kForgetT,
    fileName: "ham2.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassT,
    fileName: "ham2.eml",
    junkPercent: 8,
    traitListener: true,
    junkListener: true,
  },
  {
    // train, classify, forget, reclassify spam4
    command: kTrainT,
    fileName: "spam4.eml",
    junkPercent: 100,
    traitListener: true,
    junkListener: true,
  },
  {
    command: kClassT,
    fileName: "spam4.eml",
    junkPercent: 100,
    traitListener: true,
    junkListener: true,
  },
  {
    command: kCounts,
    tokenCount: 66, // count of tokens in the corpus
    junkCount: 2, // count of junk messages in the corpus
    goodCount: 1, // count of good messages in the corpus
  },
  {
    command: kForgetT,
    fileName: "spam4.eml",
    junkPercent: 100,
    traitListener: true,
    junkListener: false,
  },
  {
    command: kClassT,
    fileName: "spam4.eml",
    junkPercent: 81,
    traitListener: true,
    junkListener: true,
  },
  {
    // forget ham1 and spam1 to empty training
    command: kForgetT,
    fileName: "ham1.eml",
    junkPercent: 0,
    traitListener: true,
    junkListener: true,
  },
  {
    command: kForgetT,
    fileName: "spam1.eml",
    junkPercent: 100,
    traitListener: true,
    junkListener: true,
  },
  // repeat the whole sequence using the junk calls
  {
    // train 1 ham and 1 spam message
    command: kTrainJ,
    fileName: "ham1.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kTrainJ,
    fileName: "spam1.eml",
    junkPercent: 100,
    traitListener: false,
    junkListener: true,
  },
  {
    // the trained messages will classify at 0 and 100
    command: kClassJ,
    fileName: "ham1.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassJ,
    fileName: "spam1.eml",
    junkPercent: 100,
    traitListener: false,
    junkListener: true,
  },
  {
    // ham2, spam2, spam4 give partial percents, but still ham
    command: kClassJ,
    fileName: "ham2.eml",
    junkPercent: 8,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassJ,
    fileName: "spam2.eml",
    junkPercent: 81,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassJ,
    fileName: "spam4.eml",
    junkPercent: 81,
    traitListener: false,
    junkListener: true,
  },
  {
    // spam3 evaluates to spam
    command: kClassJ,
    fileName: "spam3.eml",
    junkPercent: 98,
    traitListener: false,
    junkListener: true,
  },
  {
    // train ham2, then test percents of 0 (clearly good)
    command: kTrainJ,
    fileName: "ham2.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassJ,
    fileName: "ham2.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    // forget ham2, percents should return to partial value
    command: kForgetJ,
    fileName: "ham2.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassJ,
    fileName: "ham2.eml",
    junkPercent: 8,
    traitListener: false,
    junkListener: true,
  },
  {
    // train, classify, forget, reclassify spam4
    command: kTrainJ,
    fileName: "spam4.eml",
    junkPercent: 100,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassJ,
    fileName: "spam4.eml",
    junkPercent: 100,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kForgetJ,
    fileName: "spam4.eml",
    junkPercent: 100,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kClassJ,
    fileName: "spam4.eml",
    junkPercent: 81,
    traitListener: false,
    junkListener: true,
  },
  {
    // forget ham1 and spam1 to be empty
    command: kForgetJ,
    fileName: "ham1.eml",
    junkPercent: 0,
    traitListener: false,
    junkListener: true,
  },
  {
    command: kForgetJ,
    fileName: "spam1.eml",
    junkPercent: 100,
    traitListener: false,
    junkListener: true,
  },
];

// main test
function run_test() {
  localAccountUtils.loadLocalMailAccount();
  do_test_pending();

  // setup pro/anti arrays as junk/good
  gProArray.push(kJunkTrait);
  gAntiArray.push(kGoodTrait);

  startCommand();
}

var junkListener = {
  // nsIJunkMailClassificationListener implementation
  onMessageClassified(aMsgURI, aClassification, aJunkPercent) {
    if (!aMsgURI) {
      // Ignore end-of-batch signal.
      return;
    }
    // print("Message URI is " + aMsgURI);
    // print("Junk percent is " + aJunkPercent);
    // print("Classification is " + aClassification);
    var command = gTest.command;
    var junkPercent = gTest.junkPercent;
    // file returned correctly
    Assert.equal(getSpec(gTest.fileName), aMsgURI);

    // checks of aClassification

    // forget returns unclassified
    if (command == kForgetJ || command == kForgetT) {
      Assert.equal(aClassification, kUnclassified);
    } else {
      // classification or train should return an actual classification
      // check junk classification set by default cutoff of 90
      var isGood = Math.abs(junkPercent) < 90;
      if (junkPercent < 0) {
        isGood = !isGood;
      }
      Assert.equal(aClassification, isGood ? kGood : kJunk);
    }

    // checks of aJunkPercent

    if (command == kClassJ || command == kClassT) {
      // classify returns the actual junk percents
      Assert.equal(Math.abs(junkPercent), aJunkPercent);
    } else if (command == kTrainJ || command == kTrainT) {
      // train returns the ham and spam limits
      Assert.equal(aJunkPercent, junkPercent < 90 ? kIsHamScore : kIsSpamScore);
    } else {
      // Forget always returns 0.
      Assert.equal(aJunkPercent, 0);
    }

    // if the current test includes a trait listener, it will
    // run next, so we defer to it for starting the next command
    if (gTest.traitListener) {
      return;
    }
    startCommand();
  },
};

var traitListener = {
  // nsIMsgTraitClassificationListener implementation
  onMessageTraitsClassified(aMsgURI, aTraits, aPercents) {
    if (!aMsgURI) {
      // Ignore end-of-batch signal.
      return;
    }
    // print("(Trait Listener)Message URI is " + aMsgURI);
    // print("(Trait Listener)Junk percent is " + aPercents);
    var command = gTest.command;
    var junkPercent = gTest.junkPercent;
    // print("command, junkPercent is " + command + " , " + junkPercent);

    Assert.equal(getSpec(gTest.fileName), aMsgURI);

    // checks of aPercents

    if (command == kForgetJ || command == kForgetT) {
      // "forgets" with null newClassifications does not return a percent
      Assert.equal(aPercents.length, 0);
    } else {
      var percent = aPercents[0];
      // print("Percent is " + percent);
      if (command == kClassJ || command == kClassT) {
        // Classify returns actual percents
        Assert.equal(percent, junkPercent);
      } else {
        // Train simply returns 100.
        Assert.equal(percent, 100);
      }
    }

    // checks of aTraits

    if (command == kForgetJ || command == kForgetT) {
      // "forgets" with null newClassifications does not return a
      // classification
      Assert.equal(aTraits.length, 0);
    } else if (command == kClassJ || command == kClassT) {
      // classification just returns the tested "Pro" trait (junk)
      let trait = aTraits[0];
      Assert.equal(trait, kJunkTrait);
    } else {
      // training returns the actual trait trained
      let trait = aTraits[0];
      Assert.equal(trait, junkPercent < 90 ? kGoodTrait : kJunkTrait);
    }

    // All done, start the next test
    startCommand();
  },
};

// start the next test command
function startCommand() {
  if (!tests.length) {
    // Do we have more commands?
    // no, all done
    do_test_finished();
    return;
  }

  gTest = tests.shift();
  print(
    "StartCommand command = " +
      gTest.command +
      ", remaining tests " +
      tests.length
  );
  var command = gTest.command;
  var junkPercent = gTest.junkPercent;
  var fileName = gTest.fileName;
  var tListener = gTest.traitListener;
  var jListener = gTest.junkListener;
  switch (command) {
    case kTrainJ:
      // train message using junk call
      MailServices.junk.setMessageClassification(
        getSpec(fileName), // in string aMsgURI
        null, // in nsMsgJunkStatus aOldUserClassification
        junkPercent == kIsHamScore ? kGood : kJunk, // in nsMsgJunkStatus aNewClassification
        null, // in nsIMsgWindow aMsgWindow
        junkListener
      ); // in nsIJunkMailClassificationListener aListener);
      break;

    case kTrainT:
      // train message using trait call
      MailServices.junk.setMsgTraitClassification(
        getSpec(fileName), // aMsgURI
        [], // aOldTraits
        junkPercent == kIsSpamScore ? gProArray : gAntiArray, // aNewTraits
        tListener ? traitListener : null, // aTraitListener
        null, // aMsgWindow
        jListener ? junkListener : null
      );
      break;

    case kClassJ:
      // classify message using junk call
      MailServices.junk.classifyMessage(
        getSpec(fileName), // in string aMsgURI
        null, // in nsIMsgWindow aMsgWindow
        junkListener
      ); // in nsIJunkMailClassificationListener aListener
      break;

    case kClassT:
      // classify message using trait call
      MailServices.junk.classifyTraitsInMessage(
        getSpec(fileName), // in string aMsgURI
        gProArray, // in array aProTraits,
        gAntiArray, // in array aAntiTraits
        tListener ? traitListener : null, // in nsIMsgTraitClassificationListener aTraitListener
        null, // in nsIMsgWindow aMsgWindow
        jListener ? junkListener : null
      ); // in nsIJunkMailClassificationListener aJunkListener
      break;

    case kForgetJ:
      // forget message using junk call
      MailServices.junk.setMessageClassification(
        getSpec(fileName), // in string aMsgURI
        junkPercent == kIsHamScore ? kGood : kJunk, // in nsMsgJunkStatus aOldUserClassification
        null, // in nsMsgJunkStatus aNewClassification,
        null, // in nsIMsgWindow aMsgWindow,
        junkListener
      ); // in nsIJunkMailClassificationListener aListener
      break;

    case kForgetT:
      // forget message using trait call
      MailServices.junk.setMsgTraitClassification(
        getSpec(fileName), // in string aMsgURI
        junkPercent == kIsSpamScore ? gProArray : gAntiArray, // in array aOldTraits
        [], // in array aNewTraits
        tListener ? traitListener : null, // in nsIMsgTraitClassificationListener aTraitListener
        null, // in nsIMsgWindow aMsgWindow
        jListener ? junkListener : null
      ); // in nsIJunkMailClassificationListener aJunkListener
      break;

    case kCounts:
      // test counts
      let msgCount = {};
      let nsIMsgCorpus = MailServices.junk.QueryInterface(Ci.nsIMsgCorpus);
      let tokenCount = nsIMsgCorpus.corpusCounts(null, {});
      nsIMsgCorpus.corpusCounts(kJunkTrait, msgCount);
      let junkCount = msgCount.value;
      nsIMsgCorpus.corpusCounts(kGoodTrait, msgCount);
      let goodCount = msgCount.value;
      print(
        "tokenCount, junkCount, goodCount is " + tokenCount,
        junkCount,
        goodCount
      );
      Assert.equal(tokenCount, gTest.tokenCount);
      Assert.equal(junkCount, gTest.junkCount);
      Assert.equal(goodCount, gTest.goodCount);
      do_timeout(0, startCommand);
      break;
  }
}