public void DuplicateEntriesNotAdd() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("Nick", "0744596866"); phoneBook.Add("John Smith", "0744596866"); Assert.AreEqual(1, phoneBook.Count()); }
public void Add() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("Nick", "0744596866"); phoneBook.Add("John Smith", "5555"); Assert.AreEqual(2, phoneBook.Count()); }
public void FilterByPartialPhone_OneResult() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("Nick", "0744596866"); phoneBook.Add("John Smith", "0745516", "3gd"); phoneBook.Add("Samuel", "444"); string partialName = "55"; string pattern = @"(" + partialName + @")"; phoneBook.FilterBy(pattern, "phone"); Assert.AreEqual(1, phoneBook.Count()); }
public void Execute(string[] args) { ConsoleInput consoleInput = new ConsoleInput(args, name); if (consoleInput.IsValidCommandName()) { ActivateParameters(); var minimumParameters = parameters.MandatoryLength(); var maximumParameters = parameters.ParametersLength(); Parameters mandatoryAndOptional = new Parameters(consoleInput.Parameters); if (consoleInput.Parameters.Length >= minimumParameters && consoleInput.Parameters.Length <= maximumParameters) { var name = consoleInput[0]; var phone = consoleInput[1]; var born = ValidateDate(mandatoryAndOptional); var phoneBook = new PhoneBook(); var fileIO = new InputOutput("PhoneBook.txt"); fileIO.ReadFile(ref phoneBook); if (phoneBook.Add(name: name, phone: phone, birthdate: born)) { fileIO.WriteFile(ref phoneBook); if (born != string.Empty) { var bornT = new BirthDate(born); bornT.IsValid(new string[] { "yyyyMMdd" }); born = bornT.Format("yyyy-MM-dd"); } message = string.Format("Added: {0} => {1} => {2}", name, phone, born); } else { message = string.Format("Cannot add." + System.Environment.NewLine + "Reason: Duplicate name/phone for {0} => {1}", name, phone); } ////Console.WriteLine("Total phone numbers: {0}", phoneBook.Count()); message += System.Environment.NewLine; message += string.Format("Total phone numbers: {0}", phoneBook.Count()); } else { message += string.Format("This command requires:"); message += System.Environment.NewLine; message += string.Format("- mandatory parameters: {0}, {1}", parameters.Mandatory()[0].Name, parameters.Mandatory()[1].Name); message += System.Environment.NewLine; message += string.Format("- optional parameters: {0}", parameters.Optional()[0].Name); message += System.Environment.NewLine; message += string.Format("Command format: add {0}", string.Join(" ", parameters.Original)); } Console.WriteLine(Message()); } }
public void StubReadFile(ref PhoneBook phoneBook) { try { using (StreamReader sr = new StreamReader(memoryStream)) { string line; while ((line = sr.ReadLine()) != null) { string[] splittedLine = Regex.Split(MultipleLines(line.ToString()), dataSeparator); phoneBook.Add(splittedLine[0], splittedLine[1]); } } } catch (Exception) { // WriteFile(ref phoneBook); } }
public void ReadFile(ref PhoneBook phoneBook) { try { using (StreamReader sr = new StreamReader(fileName)) { string line; while ((line = sr.ReadLine()) != null) { string[] splittedLine = Regex.Split(MultipleLines(line), dataSeparator); if (splittedLine.Length == 3) Array.Resize(ref splittedLine, 4); phoneBook.Add(name: splittedLine[1], phone: splittedLine[2], birthdate: splittedLine[3], defaultKey: splittedLine[0]); } } } catch (Exception) { WriteFile(ref phoneBook); //Console.WriteLine("A new file has been created."); } }
public void RemoveAt() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("Nick", "0744596866"); phoneBook.Add("John Smith", "0745516", "3gd"); phoneBook.Add("Samuel", "444"); phoneBook.RemoveAt("3gd"); Assert.AreEqual(2, phoneBook.Count()); }
public void ModifyPhone() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("Nick", "0744596866"); phoneBook.Add("John Smith", "0745516", "3gd"); KeyValuePair<string, Contact> contactToCompare = new KeyValuePair<string, Contact>("3gd", new Contact("John Smith", "0744578999")); KeyValuePair<string, Contact> contactToModify = phoneBook.Modify(id: "3gd", phoneNumber: "0744578999"); Assert.AreEqual(contactToCompare, contactToModify); }
public void ModifyNameWhenKeyDoesNotExist() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("Nick", "0744596866"); phoneBook.Add("John Smith", "0745516", "3gd"); KeyValuePair<string, Contact> contactToCompare = new KeyValuePair<string, Contact>("3gd", new Contact("Johnny 2", "0745516")); KeyValuePair<string, Contact> contactToModify = phoneBook.Modify(id: "3gd", name: "Johnny"); Assert.AreNotEqual(contactToCompare, contactToModify); }
public void ListBirthdayTomorrow() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("John Smith", "0745516", "20120327", "rty"); phoneBook.Add("Nick", "0744596866", "20120326", "gyu"); phoneBook.Add("Samuel", "444", "20120327", "fgh"); phoneBook.Backup(); DateTime today = new DateTime(2016, 03, 26); var startRange = today.AddDays(1); var endRange = today.AddDays(1); DateTime[] birthdayRange; birthdayRange = new DateTime[] { startRange, endRange }; phoneBook.BirthdayRange(birthdayRange); Assert.AreEqual(2, phoneBook.Count()); }
public void ListBirthdayToday() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("John Smith", "0745516", "20120327", "rty"); phoneBook.Add("Nick", "0744596866", "20120326", "gyu"); phoneBook.Add("Samuel", "444"); ////phoneBook.Backup(); DateTime today = new DateTime(2016, 03, 26); var startRange = today; var endRange = today; DateTime[] birthdayRange; birthdayRange = new DateTime[] { startRange, endRange }; phoneBook.BirthdayRange(birthdayRange); ////DateTime today2; ////Assert.AreEqual(true, phoneBook.DateIsValid("20120326", out today2)); ////Assert.AreEqual(true, phoneBook.DayInRange(today, startRange, endRange)); Assert.AreEqual(1, phoneBook.Count()); }
public void ListBirthdayThisWeek() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("John Smith", "0745516", "20160329", "rty"); // Tuesday phoneBook.Add("Nick", "0744596866", "20120328", "gyu"); // Monday phoneBook.Add("Samuel", "444", "20100326", "iop"); // Sunday phoneBook.Backup(); DateTime today = new DateTime(2016, 04, 02); var dayOfWeek = (int)today.DayOfWeek; var startRange = today.AddDays(0 - dayOfWeek); var endRange = today.AddDays(6 - dayOfWeek); DateTime[] birthdayRange; birthdayRange = new DateTime[] { startRange, endRange }; phoneBook.BirthdayRange(birthdayRange); Assert.AreEqual(2, phoneBook.Count()); }
public void ListBirthdayNextWeek() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("John Smith 2", "0745516", "20160329", "bnm"); // Tuesday phoneBook.Add("Nickk", "0744596866", "20120328", "bbb"); // Monday phoneBook.Add("Samuelo", "44334", "20120403", "vdf"); // Sunday => next week phoneBook.Backup(); DateTime today = new DateTime(2016, 03, 28); var dayOfWeek = (int)today.DayOfWeek; var startRange = today.AddDays(0 - dayOfWeek + 7); var endRange = today.AddDays(6 - dayOfWeek + 7); DateTime[] birthdayRange; birthdayRange = new DateTime[] { startRange, endRange }; phoneBook.BirthdayRange(birthdayRange); Assert.AreEqual(1, phoneBook.Count()); }
public void List() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("Nick", "0744596866"); phoneBook.Add("John Smith", "0745516"); phoneBook.Add("Samuel", "444"); int countedContacts = 0; foreach (KeyValuePair<string, Contact> currentItem in phoneBook) { countedContacts++; } Assert.AreEqual(countedContacts, phoneBook.Count()); }
public void GetElementToFalse() { PhoneBook phoneBook = new PhoneBook(); phoneBook.Add("Nick", "0744596866"); phoneBook.Add("John Smith", "0745516", "3gd"); phoneBook.Add("Samuel", "444"); KeyValuePair<string, Contact> contactToCompare = new KeyValuePair<string, Contact>("3gd", new Contact("John Smith 2", "0745516")); KeyValuePair<string, Contact> contactToRetrieve = phoneBook.GetElementTo("3gd"); Assert.AreNotEqual(contactToCompare, contactToRetrieve); }