def test_positive_update_rssfeed_url(setting_update): """Check if the RSS feed URL is updated :id: 166ff6f2-e36e-4934-951f-b947139d0d73 :steps: 1. Save the original RSS URL 2. Update RSS feed with a valid URL 3. Assert the RSS feed URL was really updated 4. Restore the original feed URL :parametrized: yes :expectedresults: RSS feed URL is updated :CaseAutomation: Automated """ test_url = random.choice(list(valid_url_list())) Settings.set({'name': 'rss_url', 'value': test_url}) updated_url = Settings.list({'search': 'name=rss_url'})[0] assert updated_url['value'] == test_url
def test_positive_update_rssfeed_url(self): """Check if the RSS feed URL is updated :id: 166ff6f2-e36e-4934-951f-b947139d0d73 :steps: 1. Save the original RSS URL 2. Update RSS feed with a valid URL 3. Assert the RSS feed URL was really updated 4. Restore the original feed URL :expectedresults: RSS feed URL is updated :CaseAutomation: automated """ orig_url = Settings.list({'search': 'name=rss_url'})[0]['value'] for test_url in valid_url_list(): Settings.set({'name': 'rss_url', 'value': test_url}) updated_url = Settings.list({'search': 'name=rss_url'})[0] self.assertEqual(test_url, updated_url['value']) Settings.set({'name': 'rss_url', 'value': orig_url})
def test_positive_update_rssfeed_url(self): """Check if the RSS feed URL is updated :id: 166ff6f2-e36e-4934-951f-b947139d0d73 :steps: 1. Save the original RSS URL 2. Update RSS feed with a valid URL 3. Assert the RSS feed URL was really updated 4. Restore the original feed URL :expectedresults: RSS feed URL is updated :caseautomation: automated """ orig_url = Settings.list({'search': 'name=rss_url'})[0]['value'] for test_url in valid_url_list(): Settings.set({'name': 'rss_url', 'value': test_url}) updated_url = Settings.list({'search': 'name=rss_url'})[0] self.assertEqual(test_url, updated_url['value']) Settings.set({'name': 'rss_url', 'value': orig_url})