summaryrefslogtreecommitdiff
path: root/web-ui/test/test_data.js
diff options
context:
space:
mode:
authorkaeff <hi@kaeff.net>2015-08-17 15:56:50 +0200
committerkaeff <hi@kaeff.net>2015-08-17 15:56:50 +0200
commitb16bae353e40fa05b4993ef68232a9df83db370e (patch)
tree0768a89a5b98e26b31b52e59aa21fc4a358af8ba /web-ui/test/test_data.js
parent57376b6cb20b0d4af0e5940f29229421adf8679f (diff)
Read encoding from attachment info instead of headers
Clean up by removing now unused headers from attachment info, and add a unit test for attachment rendering
Diffstat (limited to 'web-ui/test/test_data.js')
-rw-r--r--web-ui/test/test_data.js29
1 files changed, 28 insertions, 1 deletions
diff --git a/web-ui/test/test_data.js b/web-ui/test/test_data.js
index 446fd7c6..62492bbe 100644
--- a/web-ui/test/test_data.js
+++ b/web-ui/test/test_data.js
@@ -202,6 +202,32 @@ define(function() {
getMailPartByContentType: function () { return; }
};
+ var withAttachments = {
+ header: {
+ to:'jed_waelchi@cummerata.info',
+ from:'laurel@hamill.info',
+ subject:'Velit aut tempora animi ut nulla esse.',
+ date:'2014-06-04T14:41:13-03:00'
+ },
+ ident:1,
+ tags:['textplain'],
+ mailbox: ['inbox'],
+ status:[],
+ textPlainBody: 'Hello Everyone',
+ isSentMail: function() { return false; },
+ isDraftMail: function() { return false; },
+ replyToAddress: function() { return { to: ['laurel@hamill.info'], cc: [] }; },
+ replyToAllAddress: function() { return { to: ['laurel@hamill.info'], cc: [] }; },
+ isMailMultipartAlternative: function() { return false; },
+ availableBodyPartsContentType: function() { return []; },
+ getMailPartByContentType: function() { return; },
+ attachments: [{
+ ident: '912ec803b2ce49e4a541068d495ab570',
+ name: 'filename.txt',
+ encoding: 'base64'
+ }]
+ };
+
var testData = {
rawMail: {
mail: rawMail,
@@ -215,7 +241,8 @@ define(function() {
parsedMail: {
simpleTextPlain: simpleTextPlainMail,
html: htmlNoEncodingMail,
- draft: draftMail
+ draft: draftMail,
+ withAttachments: withAttachments
}
};