Exemplo n.º 1
0
        public void DeleteAlternateExtension_EmptyObjectId_Failure()
        {
            //static delete failure calls
            var res = AlternateExtension.DeleteAlternateExtension(_mockServer, "objectid", "");

            Assert.IsFalse(res.Success, "Empty ObjectId should fail");
        }
Exemplo n.º 2
0
        public void Update_NoPendingChanges_Failure()
        {
            AlternateExtension oAltExt = new AlternateExtension();
            var res = oAltExt.Update(true);

            Assert.IsFalse(res.Success, "Calling Update with no pending changes should fail");
        }
Exemplo n.º 3
0
        public void GetAlternateExtension_NullConnectionServer_Failure()
        {
            AlternateExtension oAltExt;

            var res = AlternateExtension.GetAlternateExtension(null, "objectid", "aaa", out oAltExt);

            Assert.IsFalse(res.Success, "Null ConnectonServer object should fail");
        }
Exemplo n.º 4
0
        public void PropertyGetFetch_DisplayName()
        {
            AlternateExtension oAltExt       = new AlternateExtension();
            const string       expectedValue = "test string value";

            oAltExt.DisplayName = expectedValue;
            Assert.IsTrue(oAltExt.ChangeList.ValueExists("DisplayName", expectedValue), "DisplayName value get fetch failed");
        }
Exemplo n.º 5
0
        public void PropertyGetFetch_PartitionObjectId()
        {
            AlternateExtension oAltExt       = new AlternateExtension();
            const string       expectedValue = "test string value";

            oAltExt.PartitionObjectId = expectedValue;
            Assert.IsTrue(oAltExt.ChangeList.ValueExists("PartitionObjectId", expectedValue), "PartitionObjectId value get fetch failed");
        }
Exemplo n.º 6
0
        public void GetAlternateExtension_EmptyUserObjectId_Failure()
        {
            AlternateExtension oAltExt;

            var res = AlternateExtension.GetAlternateExtension(_mockServer, "", "aaa", out oAltExt);

            Assert.IsFalse(res.Success, "Empty UserverObjectId should fail");
        }
Exemplo n.º 7
0
        public void PropertyGetFetch_IdIndex()
        {
            AlternateExtension oAltExt       = new AlternateExtension();
            const int          expectedValue = 2;

            oAltExt.IdIndex = expectedValue;
            Assert.IsTrue(oAltExt.ChangeList.ValueExists("IdIndex", expectedValue), "IdIndex value get fetch failed");
        }
Exemplo n.º 8
0
        public void Constructor_Default_Success()
        {
            var oTemp = new AlternateExtension();

            Console.WriteLine(oTemp.ToString());
            Console.WriteLine(oTemp.DumpAllProps());
            Console.WriteLine(oTemp.SelectionDisplayString);
            Console.WriteLine(oTemp.UniqueIdentifier);
        }
Exemplo n.º 9
0
        public void GetAlternateExtensions_NullConnectionServer_Failure()
        {
            List <AlternateExtension> oAltExts;

            //static GetAlternateExtensions calls
            var res = AlternateExtension.GetAlternateExtensions(null, "objectid", out oAltExts);

            Assert.IsFalse(res.Success, "Null ConnectionServerRest object should fail");
        }
Exemplo n.º 10
0
        public void UpdateAlternateExtension_EmptyUserObjectId_Failure()
        {
            ConnectionPropertyList oProps = new ConnectionPropertyList();

            oProps.Add("name", "value");

            var res = AlternateExtension.UpdateAlternateExtension(_mockServer, "", "aaa", oProps);

            Assert.IsFalse(res.Success, "Empty UserObjectID should fail");
        }
Exemplo n.º 11
0
        public void UpdateAlternateExtension_NullConnectionServer_Failure()
        {
            ConnectionPropertyList oProps = new ConnectionPropertyList();

            oProps.Add("name", "value");

            var res = AlternateExtension.UpdateAlternateExtension(null, "objectid", "aaa", oProps);

            Assert.IsFalse(res.Success, "Null ConnectionServerRest object should fail");
        }
Exemplo n.º 12
0
        public void AddCallHandler_JunkObjectIdReturn_Failure()
        {
            //invalid objectId response
            _mockTransport.Setup(x => x.GetCupiResponse(It.IsAny <string>(), It.IsAny <MethodType>(), It.IsAny <ConnectionServerRest>(),
                                                        It.IsAny <string>(), It.IsAny <bool>())).Returns(new WebCallResult
            {
                Success      = true,
                ResponseText = "/vmrest/users/userObjectID/alternateextensions/junk"
            });

            AlternateExtension oAltExt;
            var res = AlternateExtension.AddAlternateExtension(_mockServer, "userObjectID", 1, "1234", out oAltExt);

            Assert.IsFalse(res.Success, "Calling AddAlternateExtension with invalid return objectId should fail");
        }
Exemplo n.º 13
0
        public void DeleteAlternateExtension_ErrorResponse_Failure()
        {
            //error response
            _mockTransport.Setup(
                x => x.GetCupiResponse(It.IsAny <string>(), It.IsAny <MethodType>(), It.IsAny <ConnectionServerRest>(),
                                       It.IsAny <string>(), It.IsAny <bool>())).Returns(new WebCallResult
            {
                Success      = false,
                ResponseText = "error text",
                StatusCode   = 404
            });

            var res = AlternateExtension.DeleteAlternateExtension(_mockServer, "UserObjectId", "ObjectId");

            Assert.IsFalse(res.Success, "Calling DeleteAlternateExtension with server error response should fail");
        }
Exemplo n.º 14
0
        public void GetAlternateExtension_EmptyResult_Failure()
        {
            AlternateExtension oAltExt;

            //empty results
            _mockTransport.Setup(x => x.GetCupiResponse(It.IsAny <string>(), It.IsAny <MethodType>(), It.IsAny <ConnectionServerRest>(),
                                                        It.IsAny <string>(), true)).Returns(new WebCallResult
            {
                Success      = true,
                ResponseText = ""
            });

            var res = AlternateExtension.GetAlternateExtension(_mockServer, "userObjectID", "EmptyResultText", out oAltExt);

            Assert.IsFalse(res.Success, "Calling GetAlternateExtension with EmptyResultText should fail");
        }
Exemplo n.º 15
0
        public void AlternateExtension_Test()
        {
            string strExtension = "SIP:" + Guid.NewGuid().ToString().Replace("-", "").Substring(0, 8) + "@test.com";
            var    res          = AlternateExtension.AddAlternateExtension(_connectionServer, _tempUser.ObjectId, 1, strExtension);

            Assert.IsTrue(res.Success, "Failed to create alternate extension for testing");

            _errorString = "";
            List <AlternateExtension> oAlternateExtensions = _tempUser.AlternateExtensions(true);

            if (oAlternateExtensions == null || oAlternateExtensions.Count == 0)
            {
                Assert.Fail("Failed to fetch alterante extensions:");
            }
            Assert.IsTrue(string.IsNullOrEmpty(_errorString), "Error parsing Json for CallHandler:" + _errorString);
        }
Exemplo n.º 16
0
        public void GetAlternateExtensions_EmptyResponse_Success()
        {
            List <AlternateExtension> oAltExts;

            //empty results
            _mockTransport.Setup(x => x.GetCupiResponse(It.IsAny <string>(), It.IsAny <MethodType>(), It.IsAny <ConnectionServerRest>(),
                                                        It.IsAny <string>(), true)).Returns(new WebCallResult
            {
                Success      = true,
                ResponseText = ""
            });

            var res = AlternateExtension.GetAlternateExtensions(_mockServer, "EmptyResultText", out oAltExts);

            Assert.IsTrue(res.Success, "Calling GetAlternateExtensions with EmptyResultText should not fail:" + res);
            Assert.IsTrue(oAltExts.Count == 0, "Empty text should result in empty list of alternate extensions being returned");
        }
Exemplo n.º 17
0
        public void AddAlternateExtension_ErrorResponse_Failure()
        {
            //error response
            _mockTransport.Setup(
                x => x.GetCupiResponse(It.IsAny <string>(), MethodType.GET, It.IsAny <ConnectionServerRest>(),
                                       It.IsAny <string>(), true)).Returns(new WebCallResult
            {
                Success      = false,
                ResponseText = "error text",
                StatusCode   = 404
            });

            AlternateExtension oAltExt;
            var res = AlternateExtension.AddAlternateExtension(_mockServer, "userObjectID", 1, "1234", out oAltExt);

            Assert.IsFalse(res.Success, "Calling AddAlternateExtension with server error response should fail");
        }
Exemplo n.º 18
0
        public void GetAlternateExtensions_ErrorResponse_Failure()
        {
            List <AlternateExtension> oAltExts;

            //error response
            _mockTransport.Setup(
                x => x.GetCupiResponse(It.IsAny <string>(), MethodType.GET, It.IsAny <ConnectionServerRest>(),
                                       It.IsAny <string>(), true)).Returns(new WebCallResult
            {
                Success      = false,
                ResponseText = "error text",
                StatusCode   = 404
            });

            var res = AlternateExtension.GetAlternateExtensions(_mockServer, "ErrorResponse", out oAltExts);

            Assert.IsFalse(res.Success, "Calling GetAlternateExtensions with server error response should fail");
        }
Exemplo n.º 19
0
        public void GetAlternateExtensions_GarbageResponse_Failure()
        {
            List <AlternateExtension> oAltExts;

            //garbage response
            _mockTransport.Setup(
                x => x.GetCupiResponse(It.IsAny <string>(), MethodType.GET, It.IsAny <ConnectionServerRest>(),
                                       It.IsAny <string>(), true)).Returns(new WebCallResult
            {
                Success          = true,
                TotalObjectCount = 1,
                ResponseText     = "garbage result"
            });

            var res = AlternateExtension.GetAlternateExtensions(_mockServer, "InvalidResultText", out oAltExts);

            Assert.IsFalse(res.Success, "Calling GetAlternateExtensions with InvalidResultText should fail:");
            Assert.IsTrue(oAltExts.Count == 0, "Invalid text should result in empty list of alternate extensions being returned");
        }
Exemplo n.º 20
0
        public void Update_ErrorResponse_Failure()
        {
            //error response
            _mockTransport.Setup(
                x => x.GetCupiResponse(It.IsAny <string>(), It.IsAny <MethodType>(), It.IsAny <ConnectionServerRest>(),
                                       It.IsAny <string>(), It.IsAny <bool>())).Returns(new WebCallResult
            {
                Success      = false,
                ResponseText = "dummy text",
                StatusCode   = 444
            });

            AlternateExtension oAltExt = new AlternateExtension(_mockServer, "UserObjectId");

            oAltExt.DisplayName = "updated display name";
            var res = oAltExt.Update(true);

            Assert.IsFalse(res.Success, "Calling update with an error response should fail:" + res);
            Assert.IsTrue(res.StatusCode == 444, "Status code returned from updated call did not match error code issues in moq:" + res.StatusCode);
        }
        public void AddAndFetchAlternateExtension()
        {
            AlternateExtension oAltExt;
            string             strExtension = "SIP:" + Guid.NewGuid().ToString().Replace("-", "").Substring(0, 8) + "@test.com";
            var res = AlternateExtension.AddAlternateExtension(_connectionServer, _tempUser.ObjectId, 1, strExtension, out oAltExt);

            Assert.IsTrue(res.Success, "Failed to create new alternate extension:" + res);

            const string strNewDisplayName = "New Display Name";

            oAltExt.DisplayName = strNewDisplayName;
            res = oAltExt.Update();
            Assert.IsTrue(res.Success, "Failed to update alternate extension:" + res);

            res = oAltExt.RefetchAlternateExtensionData();
            Assert.IsTrue(res.Success, "Failed to refetch alternate extension data:" + res);
            Assert.IsTrue(oAltExt.DisplayName.Equals(strNewDisplayName));


            //refetch using objectId
            AlternateExtension oNewAltExt;

            res = AlternateExtension.GetAlternateExtension(_connectionServer, _tempUser.ObjectId, oAltExt.ObjectId, out oNewAltExt);
            Assert.IsTrue(res.Success, "Failed to fetch the alternate extension based on valid ObjectId:" + res);
            Assert.IsTrue(oNewAltExt.ObjectId.Equals(oAltExt.ObjectId), "Fetch of existing alternate extension does not match");

            res = oAltExt.Delete();
            Assert.IsTrue(res.Success, "Calling Delete on AlternateExtension on instance method failed:" + res);


            res = AlternateExtension.GetAlternateExtension(_connectionServer, "", "test", out oAltExt);
            Assert.IsFalse(res.Success, "Calling GetAlternateExtension with empty user objectId should fail");

            res = AlternateExtension.GetAlternateExtension(_connectionServer, "bogus", "test", out oAltExt);
            Assert.IsFalse(res.Success, "Calling GetAlternateExtension with bogus user objectId should fail");
        }
Exemplo n.º 22
0
        private static void RunTests()
        {
            //you can attach to multiple different Connection servers an interact with them in the same program easily by just creating
            //new instances of ConnectionServer objects - all objects "know" which server they are associated with.  This example, of course,
            //just attaches to one server.
            ConnectionServerRest connectionServer = null;

            Logger.Log("Starting log output");

            //attach to server - insert your Connection server name/IP address and login information here.
            try
            {
                connectionServer = new ConnectionServerRest("connection server", "login", "password");
            }

            catch (Exception ex)
            {
                //return an exit code of 1 to indicate failure exit.
                Console.WriteLine("Could not attach to Connection server: " + ex.Message);
                Console.Read();
                Environment.Exit(1);
            }

            //turn on "chatty" output to console
            connectionServer.DebugMode = true;

            //the Connection server object spits out the server name and version number in the ToString function.
            Console.WriteLine("Attached to Connection server: " + connectionServer);

            //do a version check - most things will work on older versions as well but voice name updates and some other functions will not.
            if (connectionServer.Version.IsVersionAtLeast(8, 5, 0, 0) == false)
            {
                Console.WriteLine("WARNING! The ConnectionCUPIFunctions library was written and tested against Connection 8.5 and later."
                                  + "  The version you are attached to is less than that.");
            }

            //the WebCallResult is the structure returned on most calls into the CUPIFunctions library.
            WebCallResult res;

            //fetch user with alias of "operator"
            UserFull oUserTestDude;

            res = UserBase.GetUser(out oUserTestDude, connectionServer, "", "operator");
            if (res.Success == false)
            {
                Console.WriteLine(res);
                return;
            }

            List <UserMessage> oUserMessages;

            res = UserMessage.GetMessages(connectionServer, oUserTestDude.ObjectId, out oUserMessages);

            if (res.Success == false)
            {
                Console.WriteLine(res);
                return;
            }


            ////****
            ////play voice messages using the phone as a media device - aka TRAP
            ////****
            PhoneRecording oPhone;

            try
            {
                oPhone = new PhoneRecording(connectionServer, "1001");
            }

            catch (Exception ex)
            {
                Console.WriteLine("Failed to connect to phone extension:" + ex);
                return;
            }

            List <UserMessage> oTestUserMessages;

            res = UserMessage.GetMessages(connectionServer, oUserTestDude.ObjectId, out oTestUserMessages);

            if (res.Success == false)
            {
                Console.WriteLine("Error fetching messages:" + res.ToString());
                Console.ReadLine();
            }

            foreach (var oMessage in oTestUserMessages)
            {
                res = oPhone.PlayMessageFile(oMessage.MsgId, 100, 100, 0, oUserTestDude.ObjectId);

                if (res.Success == false)
                {
                    Console.WriteLine("Error playing stream:" + res.ToString());
                    Console.ReadLine();
                }
            }

            //hang up
            oPhone.Dispose();

            //get the schedule details off all the schedules (both holiday and regular) that the user is associated with.  The schedule
            //assignment comes through the user's primary call handler - it references a schedule set which can contain 1 or more schedules.
            //Each schedule has 0 or more details associated with it.
            foreach (var oSchedule in oUserTestDude.PrimaryCallHandler().GetScheduleSet().Schedules())
            {
                Console.WriteLine("Schedle name=" + oSchedule.DisplayName);
                Console.WriteLine("    Details:");

                foreach (var oDetail in oSchedule.ScheduleDetails())
                {
                    Console.WriteLine(oDetail.DumpAllProps("    "));
                }
            }

            //determine if the current schedule state is ACTIVE, INACTIVE or HOLIDAY.
            Console.WriteLine("Evaluating schedule state");
            Console.WriteLine("   Schedule state right now=" + oUserTestDude.PrimaryCallHandler().GetScheduleSet().GetScheduleState(DateTime.Now).ToString());

            TransferOption oTransferAlternateSmith;

            res = oUserTestDude.PrimaryCallHandler().GetTransferOption(TransferOptionTypes.Alternate, out oTransferAlternateSmith);

            //not a lot of reasons this would fail but just in case
            if (res.Success == false)
            {
                Console.WriteLine("Could not find alternate transfer rule for jsmith");
                Console.ReadLine();
                Environment.Exit(1);
            }

            //update the transfer number to 12345
            oTransferAlternateSmith.Extension = "12345";
            oTransferAlternateSmith.Update();

            //enable the transfer rule with no end date
            oTransferAlternateSmith.UpdateTransferOptionEnabledStatus(true);

            //****
            //Add a new user
            //****

            //The user template name passed here is the default one created by setup and should be present on any system.  There are functions included
            //in the library that make presenting lists of templates for user selection easy - see the CUPIFastStart project for details.

            UserFull oUser;

            res = UserBase.AddUser(connectionServer, "voicemailusertemplate", "TestUserAlias", "80001", null, out oUser);

            if (res.Success == false)
            {
                //the ToString for the WebCallResult structure dumps its entire contents out which is handy for logging schenarios like this.
                Console.WriteLine("Failed creating new user:"******"\n\rUser created, new ObjectId=" + oUser.ObjectId);

            //****
            //Edit that user's display name
            //****

            //We could have passed the display name, first name and any other properties we wanted into the AddUser function above if we wanted.
            //This just demonstrates how easy it is to update properties on a standing user object with a few lines of code.  The library sends
            //only the items that have changed when sending the update.  The full list of properties send in the body is contained in the WebCallResult
            //structure passed back so if there's a problem the "ToString()" call will contain the entire URL, command type, body and everything
            //returned by the server for easy evaluation of what went wrong.
            oUser.DisplayName = "Test User";
            oUser.FirstName   = "Test";
            oUser.LastName    = "User";
            res = oUser.Update();

            if (res.Success == false)
            {
                Console.WriteLine("Failed updating user:"******"\n\rUser Updated: " + res.ToString());

            //update greeting
            Greeting oMyGreeting;

            res = oUser.PrimaryCallHandler().GetGreeting(GreetingTypes.Alternate, out oMyGreeting);

            if (res.Success == false)
            {
                Console.WriteLine("Error fetching alternate greeting:" + res.ToString());
                Console.ReadLine();
                return;
            }

            res = oMyGreeting.SetGreetingWavFile(1033, @"c:\clean.wav", true);

            if (res.Success == false)
            {
                Console.WriteLine("Error applying greeting stream file:" + res.ToString());
                Console.ReadLine();
                return;
            }

            //****
            //Dump the user properties for review
            //****

            //the user "toString" shows the alias, display name and extension for the user.  The DumpAllProps does a complete list of every property
            //and it's value for the user.  You will find all objects defined in the ConnectionCUPIFunctions library follow this design pattern.
            Console.WriteLine("\n\rUser properties for: {0}\r\n{1}", oUser, oUser.DumpAllProps("     "));

            //****
            //Add an alternate extension to that User
            //****

            //this adds the alternate extension "800012" as the first administrator added alternate extension.
            res = AlternateExtension.AddAlternateExtension(connectionServer, oUser.ObjectId, 1, "800012");

            if (res.Success == false)
            {
                Console.WriteLine("Failed adding alternate extension:" + res.ToString());
                Console.Read();
                Environment.Exit(1);
            }

            //whenever adding a new object using a method that does not return an instance of that object (as we do with the alternate extension above) the ObjectId
            //of the newly created object (if the call suceeds) can be pulled from the WebCallResult structure's ReturnedObjectId property.
            Console.WriteLine("\n\rAlternate Extension added, ObjectId returned= " + res.ReturnedObjectId);

            //you can always turn around and now fetch an object instance of that alternate extension like this - remember that when fetching or editing alternate
            //extensions you have to provide the user's objectId as well.
            AlternateExtension oAltExt;

            res = AlternateExtension.GetAlternateExtension(connectionServer, oUser.ObjectId, res.ReturnedObjectId, out oAltExt);

            if (res.Success == false)
            {
                Console.WriteLine("Failed fetching new alternate extension object: " + res.ToString());
                Environment.Exit(1);
            }

            //now we can update the alternate extension easily - you'll find this same type of pattern on all objects in the library (when they are completed).
            oAltExt.DtmfAccessId = "800013";
            res = oAltExt.Update();

            if (res.Success == false)
            {
                Console.WriteLine("Failed to update the alternate extension: " + res.ToString());
                Environment.Exit(1);
            }

            Console.WriteLine("\n\rAlternate extension updated: " + oAltExt);

            //****
            //List the user's notification devices
            //****
            Console.WriteLine("\n\rNotification devices for: " + oUser.Alias);

            foreach (NotificationDevice oDevice in oUser.NotificationDevices())
            {
                Console.WriteLine(oDevice.ToString());
                Console.WriteLine(oDevice.DumpAllProps("     "));
            }

            //******
            //List the users menu entry keys
            //******
            Console.WriteLine("\n\rMenu entry keys for: " + oUser.Alias);

            foreach (MenuEntry oMenu in oUser.PrimaryCallHandler().GetMenuEntries())
            {
                //use the GetActionDescription method on the ConnectionServer object to produce a bit more readable output for the
                //actions menu keys are assigned to.  You can still use the oMenu.ToString() here as well to dump out the raw data instead.
                Console.WriteLine("{0}:{1}", oMenu.TouchtoneKey, connectionServer.GetActionDescription(oMenu.Action, oMenu.TargetConversation,
                                                                                                       oMenu.TargetHandlerObjectId));
            }

            //****
            //List the first 5 system call handlers found in the system.
            //****

            ////Pass the query for any object's "get(object name)s" by passing in a list of strings at the end - the library makes sure these are
            ////put onto the URL with proper escape codes and "?" and "&" symbols.  It does not check the syntax of the items, however, and remember
            ////that they ARE case sensitive.
            ////Remember "IsPrimary" is set to 1 when it's a special handler associated with a user.
            List <CallHandler> oCallHandlers;

            res = CallHandler.GetCallHandlers(connectionServer, out oCallHandlers, "query=(IsPrimary is 0)", "rowsPerPage=5", "pageNumber=1");

            if (res.Success == false)
            {
                Console.WriteLine("Failed fetching system call handlers: " + res.ToString());
                Console.Read();
                Environment.Exit(1);
            }

            Console.WriteLine("\n\rUp to the first 5 Call Handlers in the system:");

            foreach (CallHandler oHandler in oCallHandlers)
            {
                Console.WriteLine(oHandler.ToString());
            }

            //****
            //Reset the users PIN
            //****

            //pass the optional flags for forcing change, not expiring etc... if these are not passed the current values for the credential settings
            //will be left alone.  You can pass just these flags and a blank PIN string if you want - the PIN will NOT be set to blank (that is not
            //allowed in this class library).  If you wish to force a blank password (assuming such a thing is allowed in your configuration which is
            //not advisable) then you will have to do so manually calling the credential update on your own via the RestTransportFunctions library.
            res = oUser.ResetPin("123454321", false, false, false, true);

            if (res.Success == false)
            {
                Console.WriteLine("Failure updating PIN for user: "******"True" to convert to PCM - it does more than just change the codec, it also forces it into 16 Khz, 8 bit mono which
            //Connection is happy with - even PCM with a different sample rate can cause it to send the dreded "invalid media format" error back.
            res = oUser.SetVoiceName(@"WAVFiles\TestGuyVoiceName.wav", true);

            if (res.Success == false)
            {
                Console.WriteLine("Failure updating voice name for user: "******"Error fetching the alternate greeting for the user: "******"WAVFiles\TestGuyGreeting.wav", true);

            if (res.Success == false)
            {
                Console.WriteLine("Error setting alternate greeting recording: " + res.ToString());
            }

            //By default the greeting is set to play the system generated greeting prompts - to play the custom recorded greeting we just
            //uploaded you need to set the "PlayWhat" to "1" (which is wrapped in the PlayWhatTypes enum here for readability.
            oGreeting.PlayWhat = PlayWhatTypes.RecordedGreeting;
            res = oGreeting.Update();

            if (res.Success == false)
            {
                Console.WriteLine("Error setting alternate greeting playwhat property: " + res.ToString());
            }

            //use the helper function to enable the alternate greeting (it's disabled by default).  This call sets it to be enabled forever.
            res = oGreeting.UpdateGreetingEnabledStatus(true);

            if (res.Success == false)
            {
                Console.WriteLine("Error alternate greeting enabled property: " + res.ToString());
            }

            //GET the user's mailbox store stats (quotas, size etc...)
            MailboxInfo oMailboxInfo = new MailboxInfo(connectionServer, oUser.ObjectId);

            Console.WriteLine(oMailboxInfo.DumpAllProps());

            //get messages for user - get the first 50 messages, sorted by urgent first and restrict the list
            //to only unread voice messages.
            List <UserMessage> oMessages;

            res = UserMessage.GetMessages(connectionServer, oUser.ObjectId, out oMessages, 1, 50, MessageSortOrder.URGENT_FIRST,
                                          MessageFilter.Type_Voice | MessageFilter.Read_False);

            //list subject, sender and time sent for each message returned
            if (res.Success)
            {
                foreach (UserMessage oMessage in oMessages)
                {
                    Console.WriteLine(oMessage.ToString());
                }
            }

            //remove test user
            res = oUser.Delete();

            if (res.Success)
            {
                Console.WriteLine("User deleted...");
            }

            //give you time to review the console output before exiting.
            Console.WriteLine("\n\rPress enter to exit...");
            Console.ReadLine();

            //indicate success exit code
            Environment.Exit(0);
        }
        public void AlternateExtensions_AddDelete()
        {
            //Add an alternate extension
            string        strExtension = "SIP:" + Guid.NewGuid().ToString().Replace("-", "").Substring(0, 8) + "@test.com";
            WebCallResult res          = AlternateExtension.AddAlternateExtension(_connectionServer, _tempUser.ObjectId, 1, strExtension);

            Assert.IsTrue(res.Success, "Failed adding alternate extension to user:"******"Invalid alternate extension ID should fail to fetch");

            res = _tempUser.GetAlternateExtension(1, out oAltExt, true);
            Assert.IsTrue(res.Success, "Failed to fetch alternate extension added to new user:"******"Updating an alternate extension with no pending changes should fail");

            //edit it
            oAltExt.DtmfAccessId = _tempUser.DtmfAccessId + "2";
            res = oAltExt.Update();
            Assert.IsTrue(res.Success, "Failed to update alternate extension added:" + res.ToString());

            //delete it
            res = oAltExt.Delete();
            Assert.IsTrue(res.Success, "Failed to delete alternate extension:" + res.ToString());

            //add alternate extension through alternate route via static method with return via out param

            res = AlternateExtension.AddAlternateExtension(_connectionServer, _tempUser.ObjectId, 2, _tempUser.DtmfAccessId + "321", out oAltExt);
            Assert.IsTrue(res.Success, "Failed adding alternate extension:" + res.ToString());

            res = oAltExt.RefetchAlternateExtensionData();
            Assert.IsTrue(res.Success, "Failed to refresh alternate extension:" + res.ToString());

            //get the alternate extension via alternative static method route - we'll cheat a bit here and just pass the
            //ObjectId of the guy we just created for fetching - just need to exercise the code path
            res = AlternateExtension.GetAlternateExtension(_connectionServer, _tempUser.ObjectId, oAltExt.ObjectId,
                                                           out oAltExt);
            Assert.IsTrue(res.Success, "Failed to fetch newly created alternate extension:" + res.ToString());

            //one last alternative fetching code path here - create an alternate extension object and then fetch it as an
            //instance method
            AlternateExtension oAltExt2 = new AlternateExtension(_connectionServer, _tempUser.ObjectId);

            Assert.IsNotNull(oAltExt2, "Failed to create new instance of an alternate extension");

            //some static method failures for alternate extenions

            //AddAlternateExtension
            res = AlternateExtension.AddAlternateExtension(null, "bogus", 1, "1234");
            Assert.IsFalse(res.Success, "Adding alternate extension with static AddAlternateExtension did not fail with null Connection server");

            res = AlternateExtension.AddAlternateExtension(_connectionServer, "bogus", 1, "1234");
            Assert.IsFalse(res.Success, "Adding alternate extension with static AddAlternateExtension did not fail with invalid objectId");

            res = AlternateExtension.AddAlternateExtension(_connectionServer, "", 1, "1234");
            Assert.IsFalse(res.Success, "Adding alternate extension with static AddAlternateExtension did not fail with blank objectId");

            res = AlternateExtension.AddAlternateExtension(_connectionServer, "bogus", 49, "1234");
            Assert.IsFalse(res.Success, "Adding alternate extension with static AddAlternateExtension did not fail with invalid index number");

            //DeleteAlternateExtension
            res = AlternateExtension.DeleteAlternateExtension(null, "bogus", "bogus");
            Assert.IsFalse(res.Success, "Adding alternate extension with static DeleteAlternateExtension did not fail with null ConnectionServer");

            res = AlternateExtension.DeleteAlternateExtension(_connectionServer, "bogus", "bogus");
            Assert.IsFalse(res.Success, "Adding alternate extension with static DeleteAlternateExtension did not fail with invalid objectId");

            res = AlternateExtension.DeleteAlternateExtension(_connectionServer, "", "bogus");
            Assert.IsFalse(res.Success, "Adding alternate extension with static DeleteAlternateExtension did not fail with blank objectId");

            //GetAlternateExtension
            res = AlternateExtension.GetAlternateExtension(null, "bogus", "bogus", out oAltExt);
            Assert.IsFalse(res.Success, "Getting alternate extension with static GetAlternateExtension did not fail with null Connection server");

            res = AlternateExtension.GetAlternateExtension(_connectionServer, "bogus", "bogus", out oAltExt);
            Assert.IsFalse(res.Success, "Getting alternate extension with static GetAlternateExtension did not fail with invalid objectId");

            res = AlternateExtension.GetAlternateExtension(_connectionServer, "", "bogus", out oAltExt);
            Assert.IsFalse(res.Success, "Getting alternate extension with static GetAlternateExtension did not fail with blank objectId");

            //GetAlternateExtensions
            List <AlternateExtension> oAltExts;

            res = AlternateExtension.GetAlternateExtensions(null, "bogus", out oAltExts);
            Assert.IsFalse(res.Success, "Getting alternate extensions with static GetAlternateExtensions did not fail with null Connection server");


            res = AlternateExtension.GetAlternateExtensions(_connectionServer, "", out oAltExts);
            Assert.IsFalse(res.Success, "Getting alternate extensions with static GetAlternateExtensions did not fail with empty objectId");

            //UpdateAlternateExtension
            res = AlternateExtension.UpdateAlternateExtension(null, "bogus", "bogus", null);
            Assert.IsFalse(res.Success, "updating alternate extensions with static UpdateAlternateExtension did not fail with null Connection server");

            res = AlternateExtension.UpdateAlternateExtension(_connectionServer, "bogus", "bogus", null);
            Assert.IsFalse(res.Success, "updating alternate extensions with static UpdateAlternateExtension did not fail with empty property list");
        }
Exemplo n.º 24
0
        public void DeleteAlternateExtension_NullConnectionServer_Failure()
        {
            var res = AlternateExtension.DeleteAlternateExtension(null, "objectid", "aaa");

            Assert.IsFalse(res.Success, "Null ConnectionServerRest object should fail");
        }
Exemplo n.º 25
0
        public void AddAlternateExtension_EmptyUserObjectId_Failure()
        {
            var res = AlternateExtension.AddAlternateExtension(_mockServer, "", 1, "1234");

            Assert.IsFalse(res.Success, "Empty UserObjectID should fail");
        }
Exemplo n.º 26
0
        public void DeleteAlternateExtension_EmptyUserObjectId_Failure()
        {
            var res = AlternateExtension.DeleteAlternateExtension(_mockServer, "", "aaa");

            Assert.IsFalse(res.Success, "Empty user objectId should fail");
        }
Exemplo n.º 27
0
        public void AddAlternateExtension_InvalidIdIndex_Failure()
        {
            var res = AlternateExtension.AddAlternateExtension(_mockServer, "objectid", 99999, "1234");

            Assert.IsFalse(res.Success, "IdIndex greater than 20 should fail");
        }
Exemplo n.º 28
0
        public void AddAlternateExtension_EmptyExtension_Failure()
        {
            var res = AlternateExtension.AddAlternateExtension(_mockServer, "objectid", 1, "");

            Assert.IsFalse(res.Success, "Empty extension string should fail");
        }
Exemplo n.º 29
0
        public void Constructor_NullConnectionServer_Failure()
        {
            AlternateExtension oTemp = new AlternateExtension(null, "aaa");

            Console.WriteLine(oTemp.ToString());
        }
Exemplo n.º 30
0
        public void Constructor_EmptyObjectId_Failure()
        {
            AlternateExtension oTemp = new AlternateExtension(_mockServer, "");

            Console.WriteLine(oTemp.ToString());
        }