aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/debug/logrecordserializer_test.html
blob: b0b219eb8ae468b6e31c559cabd8d685b511c9e6 (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
<!DOCTYPE html>
<html>
<!--
Copyright 2011 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Closure Unit Tests - goog.debug.Logger</title>
<script src="../base.js"></script>
<script>
  goog.require('goog.debug.Logger.Level');
  goog.require('goog.debug.LogRecord');
  goog.require('goog.debug.logRecordSerializer');
  goog.require('goog.testing.jsunit');
</script>
</head>
<body>
<script>

var NOW = 1311484654000;
var SEQ = 1231;

function testBasic() {
  var rec = new goog.debug.LogRecord(goog.debug.Logger.Level.FINE,
      'An awesome message', 'logger.name', NOW, SEQ);
  var thawed = goog.debug.logRecordSerializer.parse(
      goog.debug.logRecordSerializer.serialize(rec));

  assertEquals(goog.debug.Logger.Level.FINE, thawed.getLevel());
  assertEquals('An awesome message', thawed.getMessage());
  assertEquals('logger.name', thawed.getLoggerName());
  assertEquals(NOW, thawed.getMillis());
  assertEquals(SEQ, thawed.getSequenceNumber());
  assertNull(thawed.getException());
  assertNull(thawed.getExceptionText());
}

function testUnsafeParse() {
  var rec = new goog.debug.LogRecord(goog.debug.Logger.Level.FINE,
      'An awesome message', 'logger.name', NOW, SEQ);
  var thawed = goog.debug.logRecordSerializer.parse(
      goog.debug.logRecordSerializer.serialize(rec));

  assertEquals(goog.debug.Logger.Level.FINE, thawed.getLevel());
  assertEquals('An awesome message', thawed.getMessage());
  assertEquals('logger.name', thawed.getLoggerName());
  assertEquals(NOW, thawed.getMillis());
  assertEquals(SEQ, thawed.getSequenceNumber());
  assertNull(thawed.getException());
  assertNull(thawed.getExceptionText());
}

function testWithException() {
  var err = new Error("it broke!");
  var rec = new goog.debug.LogRecord(goog.debug.Logger.Level.FINE,
      'An awesome message', 'logger.name', NOW, SEQ);
  rec.setException(err);
  rec.setExceptionText("message: it broke!");
  var thawed = goog.debug.logRecordSerializer.unsafeParse(
      goog.debug.logRecordSerializer.serialize(rec));

  assertEquals("message: it broke!", thawed.getExceptionText());
}

function testCustomLogLevel() {
  var rec = new goog.debug.LogRecord(
      new goog.debug.Logger.Level('CUSTOM', -1),
      'An awesome message', 'logger.name', NOW, SEQ);
  var thawed = goog.debug.logRecordSerializer.parse(
      goog.debug.logRecordSerializer.serialize(rec));

  assertEquals('CUSTOM', thawed.getLevel().name);
  assertEquals(-1, thawed.getLevel().value);
}

function testWeirdLogLevel() {
  var rec = new goog.debug.LogRecord(
      new goog.debug.Logger.Level('FINE', -1),
      'An awesome message', 'logger.name', NOW, SEQ);
  var thawed = goog.debug.logRecordSerializer.parse(
      goog.debug.logRecordSerializer.serialize(rec));

  assertEquals('FINE', thawed.getLevel().name);
  // Makes sure that the log leve is still -1 even though the name
  // FINE is predefind.
  assertEquals(-1, thawed.getLevel().value);
}



</script>
</body>
</html>