forked from clopezno/reafactoring_lab_session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseOutput.txt
More file actions
98 lines (72 loc) · 2.92 KB
/
useOutput.txt
File metadata and controls
98 lines (72 loc) · 2.92 KB
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
---------------------------------ASCII------------------------------------------
Workstation Filip [Workstation] -> Node n1 [Node] -> Workstation Hans [Workstation] -> Printer Andy [Printer] -> ...
---------------------------------HTML------------------------------------------
<HTML>
<HEAD>
<TITLE>LAN Simulation</TITLE>
</HEAD>
<BODY>
<H1>LAN SIMULATION</H1>
<UL>
<LI> Workstation Filip [Workstation] </LI>
<LI> Node n1 [Node] </LI>
<LI> Workstation Hans [Workstation] </LI>
<LI> Printer Andy [Printer] </LI>
<LI>...</LI>
</UL>
</BODY>
</HTML>
---------------------------------XML------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<network>
<workstation>Filip</workstation>
<node>n1</node>
<workstation>Hans</workstation>
<printer>Andy</printer>
</network>
---------------------------------SCENARIO: Print Success --------------------------
'Filip' requests printing of 'Hello World' on 'Andy' ...
Node 'Filip' passes packet on.
Node 'n1' passes packet on.
Node 'Hans' passes packet on.
Accounting -- author = 'Unknown' -- title = 'ASCII DOCUMENT'
>>> ASCII Print job delivered.
---------------------------------SCENARIO: PrintFailure (UnkownPrinter) ------------
'Filip' requests printing of 'Hello World' on 'UnknownPrinter' ...
Node 'Filip' passes packet on.
Node 'n1' passes packet on.
Node 'Hans' passes packet on.
Node 'Andy' passes packet on.
>>> Destinition not found, print job cancelled.
---------------------------------SCENARIO: PrintFailure (print on Workstation) -----
'Filip' requests printing of 'Hello World' on 'Hans' ...
Node 'Filip' passes packet on.
Node 'n1' passes packet on.
>>> Destinition is not a printer, print job cancelled.
---------------------------------SCENARIO: PrintFailure (print on Node) -----
'Filip' requests printing of 'Hello World' on 'n1' ...
Node 'Filip' passes packet on.
>>> Destinition is not a printer, print job cancelled.
---------------------------------SCENARIO: Print Success Postscript-----------------
'Filip' requests printing of '!PS Hello World in postscript' on 'Andy' ...
Node 'Filip' passes packet on.
Node 'n1' passes packet on.
Node 'Hans' passes packet on.
Accounting -- author = 'Unknown' -- title = 'Untitled'
>>> Postscript job delivered.
---------------------------------SCENARIO: Print Failure Postscript-----------------
'Filip' requests printing of '!PS Hello World in postscript' on 'Hans' ...
Node 'Filip' passes packet on.
Node 'n1' passes packet on.
>>> Destinition is not a printer, print job cancelled.
---------------------------------SCENARIO: Broadcast Success -----------------
Broadcast Request
Node 'Filip' accepts broadcase packet.
Node 'Filip' passes packet on.
Node 'n1' accepts broadcase packet.
Node 'n1' passes packet on.
Node 'Hans' accepts broadcase packet.
Node 'Hans' passes packet on.
Node 'Andy' accepts broadcase packet.
Node 'Andy' passes packet on.
>>> Broadcast travelled whole token ring.