Пример #1
0
        public void RegisterAsyncUnregisterTemplateAsync()
        {
            var mobileClient = this.GetClient();
            var push         = mobileClient.GetPush();
            var template     = PushHelper.GetTemplateRegistrationForToast();

            PushHelper.ValidateTemplateRegistrationBeforeRegister(template);
            push.RegisterAsync(template).Wait();
            var registrations = push.RegistrationManager.PushHttpClient.ListRegistrationsAsync(template.ChannelUri).Result;

            Assert.AreEqual(registrations.Count(), 1, "1 registration should exist after RegisterNativeAsync");
            var registrationAfter = registrations.First() as TemplateRegistration;

            Assert.IsNotNull(registrationAfter, "List and Deserialization of a TemplateRegistration after successful registration should have a value.");
            Assert.AreEqual(
                registrationAfter.RegistrationId,
                push.RegistrationManager.LocalStorageManager.GetRegistration(template.Name).RegistrationId,
                "Local storage should have the same RegistrationId as the one returned from service");

            PushHelper.ValidateTemplateRegistrationAfterRegister(registrationAfter, mobileClient.applicationInstallationId);

            push.UnregisterTemplateAsync(template.Name).Wait();
            registrations = push.RegistrationManager.PushHttpClient.ListRegistrationsAsync(template.ChannelUri).Result;
            Assert.AreEqual(registrations.Count(), 0, "0 registrations should exist in service after UnregisterTemplateAsync");
            Assert.IsNull(
                push.RegistrationManager.LocalStorageManager.GetRegistration(template.Name),
                "Local storage should not contain a native registration after UnregisterTemplateAsync.");
        }
Пример #2
0
        public void RegisterRefreshRegisterWithUpdatedChannel()
        {
            var mobileClient = this.GetClient();
            var push         = mobileClient.GetPush();
            var template     = PushHelper.GetTemplateRegistrationForToast();

            PushHelper.ValidateTemplateRegistrationBeforeRegister(template);
            push.RegisterAsync(template).Wait();
            var registrations = push.RegistrationManager.PushHttpClient.ListRegistrationsAsync(template.ChannelUri).Result;

            Assert.AreEqual(registrations.Count(), 1, "1 registration should exist after RegisterNativeAsync");
            var registrationAfter = registrations.First() as TemplateRegistration;

            Assert.IsNotNull(registrationAfter, "List and Deserialization of a TemplateRegistration after successful registration should have a value.");
            Assert.AreEqual(
                registrationAfter.RegistrationId,
                push.RegistrationManager.LocalStorageManager.GetRegistration(template.Name).RegistrationId,
                "Local storage should have the same RegistrationId as the one returned from service");

            PushHelper.ValidateTemplateRegistrationAfterRegister(registrationAfter, mobileClient.applicationInstallationId);
            push.RegistrationManager.LocalStorageManager.IsRefreshNeeded = true;
            template.ChannelUri = PushHelper.GetUpdatedChannel();

            push.RegisterAsync(template).Wait();
            registrations = push.RegistrationManager.PushHttpClient.ListRegistrationsAsync(template.ChannelUri).Result;
            Assert.AreEqual(registrations.Count(), 1, "1 registration should exist after RegisterNativeAsync");
            var registrationAfterUpdate = registrations.First() as TemplateRegistration;

            Assert.IsNotNull(registrationAfterUpdate, "List and Deserialization of a TemplateRegistration after successful registration should have a value.");
            Assert.AreEqual(
                registrationAfterUpdate.RegistrationId,
                push.RegistrationManager.LocalStorageManager.GetRegistration(template.Name).RegistrationId,
                "Local storage should have the same RegistrationId as the one returned from service");
            Assert.AreEqual(registrationAfter.RegistrationId, registrationAfterUpdate.RegistrationId, "Expected the same RegistrationId to be used even after the refresh");
            Assert.AreEqual(registrationAfterUpdate.ChannelUri, template.ChannelUri, "Expected updated channelUri after 2nd register");
            Assert.AreEqual(push.RegistrationManager.LocalStorageManager.ChannelUri, template.ChannelUri, "Expected local storage to be updaed to the new channelUri after 2nd register");

            Assert.AreEqual(push.RegistrationManager.PushHttpClient.ListRegistrationsAsync(registrationAfter.ChannelUri).Result.Count(), 0, "Original channel should be gone from service");

            push.UnregisterTemplateAsync(template.Name).Wait();
            registrations = push.RegistrationManager.PushHttpClient.ListRegistrationsAsync(template.ChannelUri).Result;
            Assert.AreEqual(registrations.Count(), 0, "0 registrations should exist in service after UnregisterTemplateAsync");
            Assert.IsNull(
                push.RegistrationManager.LocalStorageManager.GetRegistration(template.Name),
                "Local storage should not contain a native registration after UnregisterTemplateAsync.");
        }