Menu

[r1525]: / branches / drivesync / UnitTests / SyncNotesTests.cs  Maximize  Restore  History

Download this file

589 lines (454 with data), 22.0 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
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
575
576
577
578
579
580
581
582
583
584
585
586
587
588
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using Google.GData.Client;
using Google.GData.Extensions;
using Outlook = Microsoft.Office.Interop.Outlook;
using Microsoft.Office.Interop.Outlook;
using System.Threading;
using System.Web;
using System.Net;
using System.IO;
using System.Drawing;
using System.Configuration;
using Google.Documents;
namespace GoContactSyncMod.UnitTests
{
[TestFixture]
public class SyncNotesTests
{
Syncronizer sync;
static Logger.LogUpdatedHandler _logUpdateHandler = null;
//Constants for test Note
const string name = "AN_OUTLOOK_TEST_NOTE";
const string body = "This is just a test note to test GoContactSyncMod";
const string groupName = "A TEST GROUP";
[TestFixtureSetUp]
public void Init()
{
//string timestamp = DateTime.Now.Ticks.ToString();
if (_logUpdateHandler == null)
{
_logUpdateHandler = new Logger.LogUpdatedHandler(Logger_LogUpdated);
Logger.LogUpdated += _logUpdateHandler;
}
string gmailUsername;
//string gmailPassword;
string syncProfile;
string syncContactsFolder;
string syncNotesFolder;
string syncAppointmentsFolder;
GoogleAPITests.LoadSettings(out gmailUsername, out syncProfile, out syncContactsFolder, out syncNotesFolder, out syncAppointmentsFolder);
sync = new Syncronizer();
sync.SyncContacts = false;
sync.SyncNotes = true;
sync.SyncAppointments = false;
sync.SyncProfile = syncProfile;
Syncronizer.SyncNotesFolder = syncNotesFolder;
sync.LoginToGoogle(gmailUsername);
sync.LoginToOutlook();
}
[SetUp]
public void SetUp()
{
// delete previously failed test Notes
DeleteTestNotes();
}
private void DeleteTestNotes()
{
sync.LoadNotes();
//Outlook.NoteItem outlookNote = sync.OutlookNotes.Find("[Body] = '" + body + "'") as Outlook.NoteItem;
foreach (Outlook.NoteItem outlookNote in sync.OutlookNotes)
{
if (outlookNote != null &&
outlookNote.Body != null && outlookNote.Body == body)
DeleteTestNote(outlookNote);
}
foreach (Document googleNote in sync.GoogleNotes)
{
try
{
string noteBody = NotePropertiesUtils.GetBody(sync, googleNote);
if (googleNote != null &&
noteBody != null && noteBody == body)
{
DeleteTestNote(googleNote);
}
}
catch (System.Exception ex)
{
throw new System.Exception("Error deleting Google note '" + (googleNote==null?null:googleNote.Title),ex);
}
}
//Delete empty Google note folders
sync.CleanUpGoogleCategories();
}
void Logger_LogUpdated(string message)
{
Console.WriteLine(message);
}
[TestFixtureTearDown]
public void TearDown()
{
sync.LogoffOutlook();
sync.LogoffGoogle();
}
[Test]
public void TestSync()
{
// create new note to sync
Outlook.NoteItem outlookNote = Syncronizer.CreateOutlookNoteItem(Syncronizer.SyncNotesFolder);
//outlookNote.Subject = name;
outlookNote.Body = body;
outlookNote.Save();
sync.SyncOption = SyncOption.OutlookToGoogleOnly;
Document googleNote = new Document();
googleNote.Type = Document.DocumentType.Document;
sync.UpdateNote(outlookNote, googleNote);
NoteMatch match = new NoteMatch(outlookNote, googleNote);
//save Note to google.
sync.SaveGoogleNote(match);
for (int i = 0; match.AsyncUpdateCompleted.HasValue && !match.AsyncUpdateCompleted.Value && i < 10; i++)
Thread.Sleep(1000);//DoNothing, until the Async Update is complete, but only wait maximum 10 seconds
googleNote = null;
sync.SyncOption = SyncOption.GoogleToOutlookOnly;
//load the same Note from google.
sync.MatchNotes();
match = FindMatch(match.GoogleNote);
//NotesMatcher.SyncNote(match, sync);
Outlook.NoteItem recreatedOutlookNote = Syncronizer.CreateOutlookNoteItem(Syncronizer.SyncNotesFolder);
sync.UpdateNote(match.GoogleNote, recreatedOutlookNote);
// match recreatedOutlookNote with outlookNote
//Assert.AreEqual(outlookNote.Subject, recreatedOutlookNote.Subject);
Assert.AreEqual(outlookNote.Body, recreatedOutlookNote.Body);
DeleteTestNotes(match);
}
[Test]
public void TestSyncDeletedOulook()
{
//ToDo: Check for eache SyncOption and SyncDelete combination
sync.SyncOption = SyncOption.MergeOutlookWins;
sync.SyncDelete = true;
// create new Note to sync
Outlook.NoteItem outlookNote = Syncronizer.CreateOutlookNoteItem(Syncronizer.SyncNotesFolder);
outlookNote.Body = body;
outlookNote.Save();
Document googleNote = new Document();
googleNote.Type = Document.DocumentType.Document;
sync.UpdateNote(outlookNote, googleNote);
NoteMatch match = new NoteMatch(outlookNote, googleNote);
//save Notes
sync.SaveNote(match);
for (int i = 0; match.AsyncUpdateCompleted.HasValue && !match.AsyncUpdateCompleted.Value && i < 10; i++)
Thread.Sleep(1000);//DoNothing, until the Async Update is complete, but only wait maximum 10 seconds
// delete outlook Note
outlookNote.Delete();
Thread.Sleep(10000);
// sync
sync.MatchNotes();
NotesMatcher.SyncNotes(sync);
// find match
match = FindMatch(match.GoogleNote);
// delete
sync.SaveNote(match);
// sync
sync.MatchNotes();
NotesMatcher.SyncNotes(sync);
// check if google Note still exists
match = FindMatch(match.GoogleNote);
Assert.IsNull(match);
}
[Test]
public void TestSyncDeletedGoogle()
{
//ToDo: Check for eache SyncOption and SyncDelete combination
sync.SyncOption = SyncOption.MergeOutlookWins;
sync.SyncDelete = true;
// create new Note to sync
Outlook.NoteItem outlookNote = Syncronizer.CreateOutlookNoteItem(Syncronizer.SyncNotesFolder);
outlookNote.Body = body;
outlookNote.Save();
Document googleNote = new Document();
googleNote.Type = Document.DocumentType.Document;
sync.UpdateNote(outlookNote, googleNote);
NoteMatch match = new NoteMatch(outlookNote, googleNote);
//save Notes
sync.SaveNote(match);
for (int i = 0; match.AsyncUpdateCompleted.HasValue && !match.AsyncUpdateCompleted.Value && i < 100; i++)
Thread.Sleep(1000);//DoNothing, until the Async Update is complete, but only wait maximum 10 seconds
Document deletedNote = sync.LoadGoogleNotes(null, match.GoogleNote.DocumentEntry.Id);
Assert.IsNotNull(deletedNote);
AtomId deletedNoteAtomId = deletedNote.DocumentEntry.Id;
string deletedNoteId = deletedNote.Id;
Assert.IsTrue(File.Exists(NotePropertiesUtils.GetFileName(deletedNoteId, sync.SyncProfile)));
// delete google Note
sync.DocumentsRequest.Delete(new Uri(Google.GData.Documents.DocumentsListQuery.documentsBaseUri + "/" + deletedNote.ResourceId), deletedNote.ETag);
// sync
sync.MatchNotes();
match = FindMatch(outlookNote);
NotesMatcher.SyncNote(match, sync);
string id = outlookNote.EntryID;
// delete
sync.SaveNote(match);
// sync
sync.MatchNotes();
NotesMatcher.SyncNotes(sync);
match = FindMatch(id);
// check if outlook Note still exists
Assert.IsNull(match);
deletedNote = sync.LoadGoogleNotes(null, deletedNoteAtomId);
Assert.IsNull(deletedNote);
Assert.IsFalse(File.Exists(NotePropertiesUtils.GetFileName(deletedNoteId, sync.SyncProfile)));
Assert.IsFalse(File.Exists(NotePropertiesUtils.GetFileName(id, sync.SyncProfile)));
DeleteTestNotes(match);
}
[Test]
public void TestSyncGroups()
{
Outlook.NoteItem outlookNote;
NoteMatch match;
CreateOutlookNoteAndSyncToGoogle(out outlookNote, out match);
// delete outlook note
outlookNote.Delete();
outlookNote = Syncronizer.CreateOutlookNoteItem(Syncronizer.SyncNotesFolder);
sync.UpdateNote(match.GoogleNote, outlookNote);
match = new NoteMatch(outlookNote, match.GoogleNote);
outlookNote.Save();
sync.SyncOption = SyncOption.MergeGoogleWins;
//sync and save contact to outlook
sync.UpdateNote(match.GoogleNote, outlookNote);
sync.SaveNote(match);
//load the same contact from outlook
sync.MatchNotes();
match = FindMatch(outlookNote);
Assert.AreEqual(groupName, outlookNote.Categories);
DeleteTestNotes(match);
//Delete empty Google note folders
sync.CleanUpGoogleCategories();
}
[Test]
public void TestSyncDeletedGroup()
{
Outlook.NoteItem outlookNote;
NoteMatch match;
CreateOutlookNoteAndSyncToGoogle(out outlookNote, out match);
// remove category from Outlook Note
outlookNote.Categories = null;
sync.UpdateNote(match.OutlookNote, match.GoogleNote);
//save Note to Google
sync.SaveNote(match);
for (int i = 0; match.AsyncUpdateCompleted.HasValue && !match.AsyncUpdateCompleted.Value && i < 100; i++)
Thread.Sleep(1000);//DoNothing, until the Async Update is complete, but only wait maximum 10 seconds
//load the same note from google.
sync.MatchNotes();
match = FindMatch(outlookNote);
// google contact should now have no group anymore
Assert.AreEqual(1, match.GoogleNote.ParentFolders.Count); //Only Notes Folder remains
Assert.AreEqual(match.GoogleNote.ParentFolders[0], sync.googleNotesFolder.Self);
sync.SyncOption = SyncOption.GoogleToOutlookOnly;
outlookNote.Categories = groupName;
sync.UpdateNote(match.GoogleNote, match.OutlookNote);
sync.SaveNote(match);
for (int i = 0; match.AsyncUpdateCompleted.HasValue && !match.AsyncUpdateCompleted.Value && i < 100; i++)
Thread.Sleep(1000);//DoNothing, until the Async Update is complete, but only wait maximum 10 seconds
//Sync Groups first
sync.MatchNotes();
//sync and save contact to outlook.
match = FindMatch(outlookNote);
sync.UpdateNote(match.GoogleNote, outlookNote);
sync.SaveNote(match);
// google and outlook should now have no category
Assert.AreEqual(1, match.GoogleNote.ParentFolders.Count); //Only Notes Folder remains
Assert.AreEqual(match.GoogleNote.ParentFolders[0], sync.googleNotesFolder.Self);
Assert.AreEqual(null, outlookNote.Categories);
DeleteTestNotes(match);
//Delete empty Google note folders
sync.CleanUpGoogleCategories();
}
private void CreateOutlookNoteAndSyncToGoogle(out Outlook.NoteItem outlookNote, out NoteMatch match)
{
//ToDo: Check for eache SyncOption and SyncDelete combination
sync.SyncOption = SyncOption.MergeOutlookWins;
sync.SyncDelete = true;
// create new contact to sync
// create new note to sync
outlookNote = Syncronizer.CreateOutlookNoteItem(Syncronizer.SyncNotesFolder);
outlookNote.Body = body;
outlookNote.Categories = groupName;
outlookNote.Save();
//Outlook note should now have a group
Assert.AreEqual(groupName, outlookNote.Categories);
Document googleNote = new Document();
googleNote.Type = Document.DocumentType.Document;
sync.UpdateNote(outlookNote, googleNote);
match = new NoteMatch(outlookNote, googleNote);
//save Notes
sync.SaveNote(match);
for (int i = 0; match.AsyncUpdateCompleted.HasValue && !match.AsyncUpdateCompleted.Value && i < 100; i++)
Thread.Sleep(1000);//DoNothing, until the Async Update is complete, but only wait maximum 10 seconds
//load the same note from google.
sync.MatchNotes();
match = FindMatch(outlookNote);
// google contact should now have the same group
Assert.IsNotNull(match.GoogleNote.ParentFolders);
//Assert.Greater(match.GoogleNote.ParentFolders.Count, 0);
Assert.AreEqual(2, match.GoogleNote.ParentFolders.Count); //2 because Notes folder and the category folder
Document categoryFolder = null;
foreach (string uri in match.GoogleNote.ParentFolders)
{
Document folder = sync.GetGoogleFolder(null, null, uri);
if (folder.Title == groupName)
{
categoryFolder = folder;
break;
}
}
Assert.IsNotNull(categoryFolder);
}
[Test]
public void TestResetMatches()
{
sync.SyncOption = SyncOption.MergeOutlookWins;
// create new Note to sync
Outlook.NoteItem outlookNote = Syncronizer.CreateOutlookNoteItem(Syncronizer.SyncNotesFolder);
outlookNote.Body = body;
outlookNote.Save();
Document googleNote = new Document();
googleNote.Type = Document.DocumentType.Document;
sync.UpdateNote(outlookNote, googleNote);
NoteMatch match = new NoteMatch(outlookNote, googleNote);
//save Note to google.
sync.SaveNote(match);
for (int i = 0; match.AsyncUpdateCompleted.HasValue && !match.AsyncUpdateCompleted.Value && i < 10; i++ )
Thread.Sleep(1000);//DoNothing, until the Async Update is complete, but only wait maximum 10 seconds
//load the same Note from google.
sync.MatchNotes();
match = FindMatch(outlookNote);
NotesMatcher.SyncNote(match, sync);
// delete outlook Note
outlookNote.Delete();
match.OutlookNote = null;
//load the same Note from google
sync.MatchNotes();
match = FindMatch(match.GoogleNote);
NotesMatcher.SyncNote(match, sync);
Assert.IsNull(match.OutlookNote);
// reset matches
System.IO.File.Delete(NotePropertiesUtils.GetFileName(match.GoogleNote.Id, sync.SyncProfile));
//Not, because NULL: sync.ResetMatch(match.OutlookNote.GetOriginalItemFromOutlook(sync));
// load same Note match
sync.MatchNotes();
match = FindMatch(match.GoogleNote);
NotesMatcher.SyncNote(match, sync);
// google Note should still be present and OutlookNote should be filled
Assert.IsNotNull(match.GoogleNote);
Assert.IsNotNull(match.OutlookNote);
DeleteTestNotes();
// create new Note to sync
outlookNote = Syncronizer.CreateOutlookNoteItem(Syncronizer.SyncNotesFolder);
outlookNote.Body = body;
outlookNote.Save();
// same test for delete google Note...
googleNote = new Document();
googleNote.Type = Document.DocumentType.Document;
sync.UpdateNote(outlookNote, googleNote);
match = new NoteMatch(outlookNote, googleNote);
//save Note to google.
sync.SaveNote(match);
for (int i = 0; match.AsyncUpdateCompleted.HasValue && !match.AsyncUpdateCompleted.Value && i < 10; i++)
Thread.Sleep(1000);//DoNothing, until the Async Update is complete, but only wait maximum 10 seconds
//load the same Note from google.
sync.MatchNotes();
match = FindMatch(outlookNote);
NotesMatcher.SyncNote(match, sync);
// delete google Note
//sync.DocumentsRequest.Delete(match.GoogleNote);
DeleteTestNote(match.GoogleNote);
match.GoogleNote = null;
//load the same Note from google.
sync.MatchNotes();
match = FindMatch(outlookNote);
NotesMatcher.SyncNote(match, sync);
Assert.IsNull(match.GoogleNote);
// reset matches
//Not, because null: sync.ResetMatch(match.GoogleNote);
sync.ResetMatch(match.OutlookNote);
// load same Note match
sync.MatchNotes();
match = FindMatch(outlookNote);
NotesMatcher.SyncNote(match, sync);
// Outlook Note should still be present and GoogleNote should be filled
Assert.IsNotNull(match.OutlookNote);
Assert.IsNotNull(match.GoogleNote);
System.IO.File.Delete(NotePropertiesUtils.GetFileName(outlookNote.EntryID, sync.SyncProfile));
outlookNote.Delete();
}
private void DeleteTestNotes(NoteMatch match)
{
if (match != null)
{
DeleteTestNote(match.GoogleNote);
DeleteTestNote(match.OutlookNote);
}
}
private void DeleteTestNote(Outlook.NoteItem outlookNote)
{
if (outlookNote != null)
{
try
{
outlookNote.Delete();
}
finally
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(outlookNote);
outlookNote = null;
}
}
}
private void DeleteTestNote(Document googleNote)
{
if (googleNote != null)
{
sync.DocumentsRequest.Delete(new Uri(Google.GData.Documents.DocumentsListQuery.documentsBaseUri + "/" + googleNote.ResourceId), googleNote.ETag);
//sync.DocumentsRequest.Delete(googleNote);
////ToDo: Currently, the Delete only removes the Notes label from the document but keeps the document in the root folder, therefore the following workaround
//Document deletedNote = sync.LoadGoogleNotes(googleNote.DocumentEntry.Id);
//if (deletedNote != null)
// sync.DocumentsRequest.Delete(deletedNote);
try
{//Delete also the according temporary NoteFile
File.Delete(NotePropertiesUtils.GetFileName(googleNote.Id, sync.SyncProfile));
}
catch (System.Exception)
{ }
}
}
internal NoteMatch FindMatch(Outlook.NoteItem outlookNote)
{
return FindMatch(outlookNote.EntryID);
}
internal NoteMatch FindMatch(string outlookNoteId)
{
foreach (NoteMatch match in sync.Notes)
{
if (match.OutlookNote != null && match.OutlookNote.EntryID == outlookNoteId)
return match;
}
return null;
}
internal NoteMatch FindMatch(Document googleNote)
{
if (googleNote != null)
{
foreach (NoteMatch match in sync.Notes)
{
if (match.GoogleNote != null && match.GoogleNote.DocumentEntry.Id == googleNote.DocumentEntry.Id)
return match;
}
}
return null;
}
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.