

insightly-api
@ 9
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 |
using System; using System.Collections.Generic; using System.Linq; using System.Net; using Microsoft.VisualStudio.TestTools.UnitTesting; using RestSharp; using TS.Insightly.API; using TS.Insightly.API.Contract; namespace UnitTestInsightly { /// <summary> /// Test class for various methods to get contact details from insightly. /// </summary> [TestClass] public class ContactGetTest { /// <summary> /// Contact ID for the default contact, which should not be changed for /// removed from the CRM. /// </summary> private const int JohnSmithContactId = 39547555; /// <summary> /// Basic test to confirm the connection and correct response from the api. /// </summary> /// <remarks> /// Contact ID 39547555 relates to the 2nd contact (Mr John Smith ID: 2") /// in http://VIVHX6A8.insight.ly /// </remarks> [TestMethod] public void BasicConnectionAndGetTest() { var client = new RestClient(); client.BaseUrl = @"https://api.insight.ly/v2/"; client.Authenticator = new HttpBasicAuthenticator(APIUser.PLAIN_API_KEY, ""); var request = new RestRequest(Method.GET); request.Resource = String.Format("contacts/{0}", JohnSmithContactId); IRestResponse response = client.Execute(request); Assert.IsNull(response.ErrorException); Assert.AreEqual(HttpStatusCode.OK, response.StatusCode); } /// <summary> /// Test returns contact record john smith for CRM contact unique identifier. /// </summary> [TestMethod] public void ReturnJohnSmithForCRMContactId() { InsightlyAPI api = new InsightlyAPI(APIUser.PLAIN_API_KEY); var contact = api.GetContact(JohnSmithContactId); Assert.IsNotNull(contact); Assert.IsInstanceOfType(contact, typeof(Contact)); Assert.AreEqual(JohnSmithContactId, contact.CONTACT_ID); } /// <summary> /// Test returns contact record john smith for email address. /// </summary> [TestMethod] public void ReturnJohnSmithForEmailAddress() { const string contactEmail = "johnsmith@smith.net"; InsightlyAPI api = new InsightlyAPI(APIUser.PLAIN_API_KEY); var contacts = api.GetContactsForEmail(contactEmail); Assert.IsNotNull(contacts); Assert.IsInstanceOfType(contacts, typeof(List<Contact>)); Assert.IsTrue(contacts.Count > 0); Contact firstContact = contacts[0]; Assert.AreEqual(JohnSmithContactId, firstContact.CONTACT_ID); Assert.IsNotNull(firstContact.CONTACTINFOS); Assert.IsTrue(firstContact.CONTACTINFOS.Count > 0); ContactInfo firstInfo = contacts[0].CONTACTINFOS[0]; Assert.AreEqual(contactEmail, firstInfo.DETAIL); } /// <summary> /// Test returns empty list if no matching contacts. /// </summary> [TestMethod] public void ReturnForNonExistentEmailAddress() { const string contactEmail = "abcde@123.net"; InsightlyAPI api = new InsightlyAPI(APIUser.PLAIN_API_KEY); var contacts = api.GetContactsForEmail(contactEmail); Assert.IsNotNull(contacts); Assert.IsTrue(contacts.Count == 0); } /// <summary> /// Test returns the postal address for john smith. /// </summary> [TestMethod] public void ReturnPostalAddressForJohnSmith() { InsightlyAPI api = new InsightlyAPI(APIUser.PLAIN_API_KEY); var contact = api.GetContact(JohnSmithContactId); Assert.IsNotNull(contact); Assert.IsInstanceOfType(contact, typeof(Contact)); Assert.AreEqual(JohnSmithContactId, contact.CONTACT_ID); Assert.IsNotNull(contact.ADDRESSES); Assert.IsTrue(contact.ADDRESSES.Any()); Address address = contact.ADDRESSES[0]; Assert.AreEqual("City for Work Address", address.CITY); } /// <summary> /// Test returns the custom field 1 for john smith. /// </summary> [TestMethod] public void ReturnCustomField1ForJohnSmith() { InsightlyAPI api = new InsightlyAPI(APIUser.PLAIN_API_KEY); var contact = api.GetContact(JohnSmithContactId); Assert.IsNotNull(contact); Assert.AreEqual("Custom Country Field (One)", contact.CONTACT_FIELD_1); } } } |
Commits for insightly-api/trunk/UnitTestInsightly/ContactGetTest.cs
Revision | Author | Commited | Message |
---|---|---|---|
9
![]() |
|
Tue 24 Sep, 2013 10:12:34 +0000 | Added AddNewContactIfNotExists that checks for existing email, first and last names before adding a contact. |
6
![]() |
|
Mon 23 Sep, 2013 09:46:21 +0000 | Tested adding and retrieving contact custom field 1. |
5
![]() |
|
Mon 23 Sep, 2013 09:01:00 +0000 | Added contact address. |
4
![]() |
|
Fri 20 Sep, 2013 15:08:23 +0000 | Added code and tests to add a basic contact with email address. |
3
![]() |
|
Thu 19 Sep, 2013 14:44:24 +0000 | Initial working API retrieving a contact by it’s id and email address. |
2 |
|
Thu 19 Sep, 2013 09:09:16 +0000 | Initial check in. |