-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathPoWriterTests.cs
More file actions
164 lines (141 loc) · 4.1 KB
/
PoWriterTests.cs
File metadata and controls
164 lines (141 loc) · 4.1 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
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
using Xunit;
namespace OrchardCoreContrib.PoExtractor.Tests;
public class PoWriterTests
{
private readonly MemoryStream _stream = new();
[Fact]
public void WriteRecord_WritesSingularLocalizableString()
{
// Arrange
var localizableString = new LocalizableString
{
Text = "Computer"
};
// Act
using (var writer = new PoWriter(_stream))
{
writer.WriteRecord(localizableString);
}
// Assert
var result = ReadPoStream();
Assert.Equal($"msgid \"Computer\"", result[0]);
Assert.Equal($"msgstr \"\"", result[1]);
}
[Fact]
public void WriteRecord_Escapes()
{
// Arrange
var localizableString = new LocalizableString
{
Text = "Computer \r\n"
};
// Act
using (var writer = new PoWriter(_stream))
{
writer.WriteRecord(localizableString);
}
// Assert
var result = ReadPoStream();
Assert.Equal($"msgid \"Computer \\r\\n\"", result[0]);
Assert.Equal($"msgstr \"\"", result[1]);
}
[Fact]
public void WriteRecord_ShouldEscape_CarriageReturn()
{
// Arrange
var localizableString = new LocalizableString
{
Text = "Orchard\rCore"
};
// Act
using (var writer = new PoWriter(_stream))
{
writer.WriteRecord(localizableString);
}
// Assert
var result = ReadPoStream();
Assert.Equal("msgid \"Orchard\\rCore\"", result[0]);
Assert.Equal("msgstr \"\"", result[1]);
}
[Fact]
public void WriteRecord_WritesPluralLocalizableString()
{
// Arrange
var localizableString = new LocalizableString()
{
Text = "Computer",
TextPlural = "Computers"
};
// Act
using (var writer = new PoWriter(_stream))
{
writer.WriteRecord(localizableString);
}
// Assert
var result = ReadPoStream();
Assert.Equal($"msgid \"Computer\"", result[0]);
Assert.Equal($"msgid_plural \"Computers\"", result[1]);
Assert.Equal($"msgstr[0] \"\"", result[2]);
}
[Fact]
public void WriteRecord_WritesContext()
{
// Arrange
var localizableString = new LocalizableString()
{
Text = "Computer",
Context = "CONTEXT"
};
// Act
using (var writer = new PoWriter(_stream))
{
writer.WriteRecord(localizableString);
}
// Assert
var result = ReadPoStream();
Assert.Equal($"msgctxt \"CONTEXT\"", result[0]);
Assert.Equal($"msgid \"Computer\"", result[1]);
Assert.Equal($"msgstr \"\"", result[2]);
}
[Fact]
public void WriteRecord_WritesLocations()
{
// Arrange
var localizableString = new LocalizableString()
{
Text = "Computer",
};
localizableString.Locations.Add(new LocalizableStringLocation
{
SourceFile = "File.cs",
SourceFileLine = 1,
Comment = "Comment 1"
});
localizableString.Locations.Add(new LocalizableStringLocation
{
SourceFile = "File.cs",
SourceFileLine = 2,
Comment = "Comment 2"
});
// Act
using (var writer = new PoWriter(_stream))
{
writer.WriteRecord(localizableString);
}
// Assert
var result = ReadPoStream();
Assert.Equal($"#: File.cs:1", result[0]);
Assert.Equal($"#. Comment 1", result[1]);
Assert.Equal($"#: File.cs:2", result[2]);
Assert.Equal($"#. Comment 2", result[3]);
Assert.Equal($"msgid \"Computer\"", result[4]);
Assert.Equal($"msgstr \"\"", result[5]);
}
private string[] ReadPoStream()
{
using var reader = new StreamReader(new MemoryStream(_stream.ToArray()));
return reader
.ReadToEnd()
.Split(Environment.NewLine);
}
}