public async Task MultipleModifiedListeners() { MockListener.Reset(); MockListener2.Reset(); ObjectListener.Reset(); await Listen.ModifiedAsync(ent, ent2, ctx); Assert.IsFalse(MockListener.WasOnCreatedCalled); Assert.IsFalse(MockListener.WasOnCreationValidationFailedCalled); Assert.IsTrue(MockListener.WasOnModifiedCalled); Assert.IsFalse(MockListener.WasOnModificationFailedCalled); Assert.IsFalse(MockListener.WasOnDeletedCalled); Assert.IsFalse(MockListener.WasOnDeletionFailedCalled); Assert.IsFalse(MockListener2.WasOnCreatedCalled); Assert.IsFalse(MockListener2.WasOnCreationValidationFailedCalled); Assert.IsTrue(MockListener2.WasOnModifiedCalled); Assert.IsFalse(MockListener2.WasOnModificationFailedCalled); Assert.IsFalse(MockListener2.WasOnDeletedCalled); Assert.IsFalse(MockListener2.WasOnDeletionFailedCalled); Assert.IsFalse(ObjectListener.WasOnCreatedCalled); Assert.IsFalse(ObjectListener.WasOnCreationValidationFailedCalled); Assert.IsTrue(ObjectListener.WasOnModifiedCalled); Assert.IsFalse(ObjectListener.WasOnModificationFailedCalled); Assert.IsFalse(ObjectListener.WasOnDeletedCalled); Assert.IsFalse(ObjectListener.WasOnDeletionFailedCalled); Assert.IsTrue(MockListener.EntitesWereNotTheSameOnCalling.HasValue && MockListener.EntitesWereNotTheSameOnCalling.Value); Assert.IsTrue(MockListener2.EntitesWereNotTheSameOnCalling.HasValue && MockListener2.EntitesWereNotTheSameOnCalling.Value); Assert.IsTrue(ObjectListener.EntitesWereNotTheSameOnCalling.HasValue && ObjectListener.EntitesWereNotTheSameOnCalling.Value); }
public async Task MultipleModifiedListeners_TestInheritance() { MockListener.Reset(); MockListener2.Reset(); ObjectListener.Reset(); await Listen.ModifiedAsync(new object(), new { sajt = true }, ctx); Assert.IsFalse(MockListener.WasOnCreatedCalled); Assert.IsFalse(MockListener.WasOnCreationValidationFailedCalled); Assert.IsFalse(MockListener.WasOnModifiedCalled); Assert.IsFalse(MockListener.WasOnModificationFailedCalled); Assert.IsFalse(MockListener.WasOnDeletedCalled); Assert.IsFalse(MockListener.WasOnDeletionFailedCalled); Assert.IsFalse(MockListener2.WasOnCreatedCalled); Assert.IsFalse(MockListener2.WasOnCreationValidationFailedCalled); Assert.IsFalse(MockListener2.WasOnModifiedCalled); Assert.IsFalse(MockListener2.WasOnModificationFailedCalled); Assert.IsFalse(MockListener2.WasOnDeletedCalled); Assert.IsFalse(MockListener2.WasOnDeletionFailedCalled); Assert.IsFalse(ObjectListener.WasOnCreatedCalled); Assert.IsFalse(ObjectListener.WasOnCreationValidationFailedCalled); Assert.IsTrue(ObjectListener.WasOnModifiedCalled); Assert.IsFalse(ObjectListener.WasOnModificationFailedCalled); Assert.IsFalse(ObjectListener.WasOnDeletedCalled); Assert.IsFalse(ObjectListener.WasOnDeletionFailedCalled); Assert.IsNull(MockListener.EntitesWereNotTheSameOnCalling); Assert.IsNull(MockListener2.EntitesWereNotTheSameOnCalling); Assert.IsTrue(ObjectListener.EntitesWereNotTheSameOnCalling.HasValue && ObjectListener.EntitesWereNotTheSameOnCalling.Value); }
public async Task RemoveFailed() { MockListener.Reset(); await Listen.RemoveFailedAsync(ent, ctx); Assert.IsFalse(MockListener.WasOnCreatedCalled); Assert.IsFalse(MockListener.WasOnCreationValidationFailedCalled); Assert.IsFalse(MockListener.WasOnModifiedCalled); Assert.IsFalse(MockListener.WasOnModificationFailedCalled); Assert.IsFalse(MockListener.WasOnDeletedCalled); Assert.IsTrue(MockListener.WasOnDeletionFailedCalled); }
public async Task LoadTest() { MockListener.Reset(); MockListener2.Reset(); ObjectListener.Reset(); var start = DateTime.Now; List <Task> tasks = new List <Task>(); for (int i = 0; i < 500000; i++) { tasks.Add(Listen.ModifiedAsync(ent, ent, ctx)); } Task.WaitAll(tasks.ToArray()); var time = DateTime.Now.Subtract(start).TotalMilliseconds; Assert.IsTrue(time < 1500, "time < 1500"); Assert.IsFalse(MockListener.WasOnCreatedCalled); Assert.IsFalse(MockListener.WasOnCreationValidationFailedCalled); Assert.IsTrue(MockListener.WasOnModifiedCalled); Assert.IsFalse(MockListener.WasOnModificationFailedCalled); Assert.IsFalse(MockListener.WasOnDeletedCalled); Assert.IsFalse(MockListener.WasOnDeletionFailedCalled); Assert.IsFalse(MockListener2.WasOnCreatedCalled); Assert.IsFalse(MockListener2.WasOnCreationValidationFailedCalled); Assert.IsTrue(MockListener2.WasOnModifiedCalled); Assert.IsFalse(MockListener2.WasOnModificationFailedCalled); Assert.IsFalse(MockListener2.WasOnDeletedCalled); Assert.IsFalse(MockListener2.WasOnDeletionFailedCalled); Assert.IsFalse(ObjectListener.WasOnCreatedCalled); Assert.IsFalse(ObjectListener.WasOnCreationValidationFailedCalled); Assert.IsTrue(ObjectListener.WasOnModifiedCalled); Assert.IsFalse(ObjectListener.WasOnModificationFailedCalled); Assert.IsFalse(ObjectListener.WasOnDeletedCalled); Assert.IsFalse(ObjectListener.WasOnDeletionFailedCalled); }
static void n_Reset(IntPtr jnienv, IntPtr native__this) { MockListener __this = Java.Lang.Object.GetObject <MockListener> (native__this, JniHandleOwnership.DoNotTransfer); __this.Reset(); }