[Yahoo-eng-team] [Bug 1630833] Re: Horizon image upload via URL fails with "TypeError: Cannot read property 'data' of undefined"

2016-10-06 Thread Imran Hayder
thank you. you were right, we had missing config options in glance, after fixing them, i got it working. thanks for help ** Changed in: horizon Status: Incomplete => Invalid -- You received this bug notification because you are a member of Yahoo! Engineering Team, which is subscribed

[Yahoo-eng-team] [Bug 1630833] [NEW] Horizon image upload via URL fails with "TypeError: Cannot read property 'data' of undefined"

2016-10-05 Thread Imran Hayder
Public bug reported: We have deployed Newton, and trying to upload image via URL on horizon , however it fails on horizon displaying : "TypeError: Cannot read property 'data' of undefined" However, in Chrome developer mode i see this : https://10.240.128.120/horizon/api/glance/images/ Failed

[Yahoo-eng-team] [Bug 1628670] [NEW] Duplicate designate record error shown when floating ip attached to two VMs with same name

2016-09-28 Thread Imran Hayder
Public bug reported: We have seen observed this error in designate-neutron integration for mitaka. when we create a network and add a designate dns domain to it using "neutron net-update __dns_domain my-domain.com" , and later assign a floating IP, the designate record for floating IP gets

[Yahoo-eng-team] [Bug 1619042] [NEW] Horizon integration tests lack support to login with a domain name

2016-08-31 Thread Imran Hayder
Public bug reported: PROBLEM: Currently, in horizon integration tests , there is only login performed with username/password . https://github.com/openstack/horizon/blob/master/openstack_dashboard/test/integration_tests/pages/loginpage.py#L69 However in our mitaka based deployment, we have

[Yahoo-eng-team] [Bug 1588067] [NEW] Designate DNS driver for neutron fails for SSL based endpoints.

2016-06-01 Thread Imran Hayder
Public bug reported: Summary: I have mitaka based deployment of neutron and designate and while trying to test the native integration of neutron with designate using this guide http://docs.openstack.org/mitaka/networking-guide/adv-config-dns.html I found out my DNS records are not getting

[Yahoo-eng-team] [Bug 1483917] [NEW] 'make test' command fails because 'test' isnt defined in Makefile

2015-08-11 Thread Imran Hayder
Public bug reported: the Makefile suggests that in order to run tests, use 'make test' command but it fails and since looking into source code , there is no test defined https://github.com/openstack/horizon/blob/master/Makefile ** Affects: horizon Importance: Undecided Status: New

[Yahoo-eng-team] [Bug 1414757] [NEW] Have integration tests of instance creation and deletion

2015-01-26 Thread Imran Hayder
Public bug reported: Currently we have integration tests for image and flavor creation/deletion. It would be nice to follow similar suit like image creation, to create an instance from the image created from http_image in horizon.conf, and boot a test instance from that cirros image. As a

[Yahoo-eng-team] [Bug 1412617] [NEW] Fix grammatical error in horizon 'contributing' docs

2015-01-19 Thread Imran Hayder
Public bug reported: While reading 'contributing.rst' in docs folder , i saw a sentence on line 38 that says: 'Got that all that? ' which doesnt make any sense grammatically, it should be preferably 'Got that all?' or 'Got all of that? '. here is source :

[Yahoo-eng-team] [Bug 1404379] [NEW] Selenium driver function 'current_url' is wrongly called in integration tests

2014-12-19 Thread Imran Hayder
Public bug reported: BASIC INFO: The function defined in selenium, is getting called in integration tests as : self.driver.current_url() While the official selenium documentation says it should be called as: self.driver.current_url The function call is made actually in pageobject.py (base file

[Yahoo-eng-team] [Bug 1404416] [NEW] Use selenium wait function the way selenium code suggests

2014-12-19 Thread Imran Hayder
Public bug reported: BACKGROUND: its known that horizon openstack dashboard integration tests uses selenium extensively to perform tests. Selenium official code is great in way each class and function has a docstring explaining the Usage and how params should be passed. INFO: Regarding this

[Yahoo-eng-team] [Bug 1403268] [NEW] Replace 'raise AssertionError' in integration tests with 'self.assertIn'

2014-12-16 Thread Imran Hayder
Public bug reported: The integration test has a function called 'is_the_page_title' which checks the title of current page with title assigned for each page on horizon like Login page has its own title etc. The comparison and raising of AssertionError when title doesnt meet actual page title ,