Fix NPM CA Chain issue and port conflict.

This patch includes two fixes. First, it disables our functional tests
because of a bug in grunt-connect-proxy, which is fixed by an
as-yet-not-accepted patch here:

81631b20c5

Secondly, it includes a temporary fix for the recent NPM CA chain update
explained here:

http://blog.npmjs.org/post/78085451721/npms-self-signed-certificate-is-no-more

The basic premise is that the node package manager no longer supports
their self-signed certificate. This is good! Unfortunately, the
released version of npm is 1.4.4, but the one packaged with nodejs
0.10.26(stable) is 1.4.3. Until nodejs updates itself, we need to
temporarily bork the ca chain to update npm.

Since we're using throwaway slaves, and it's a temporary fix, and
node is only used for builds, I feel this is an acceptable risk.

Change-Id: Ic510e55355966591affbe25ce3f831ca424b2afa
This commit is contained in:
Michael Krotscheck
2014-02-28 11:16:20 -08:00
parent 062836f2dd
commit 34f06c54df
10 changed files with 46 additions and 16 deletions

View File

@@ -14,12 +14,16 @@
* under the License.
*/
// Variables from protractor.conf.js -> params: {}
var config = browser.params;
describe('Storyboard Homepage', function () {
'use strict';
it('should have storyboard as the title', function () {
// Load the AngularJS homepage.
browser.get('http://localhost:9000');
browser.get(config.buildUrl('/'));
var title = element(by.tagName('title'));
expect(title.getInnerHtml()).toEqual('Storyboard');

View File

@@ -14,11 +14,15 @@
* under the License.
*/
// Variables from protractor.conf.js -> params: {}
var config = browser.params;
describe('Storyboard Project Routes', function () {
'use strict';
it('should redirect /project to /project/list', function () {
browser.get('http://localhost:9000/#!/project');
browser.get(config.buildUrl('/project'));
expect(browser.getCurrentUrl()).toContain('#!/project/list');
});
});

View File

@@ -14,11 +14,14 @@
* under the License.
*/
// Variables from protractor.conf.js -> params: {}
var config = browser.params;
describe('Storyboard Story Routes', function () {
'use strict';
it('should redirect /story to /story/list', function () {
browser.get('http://localhost:9000/#!/story');
browser.get(config.buildUrl('/story'));
expect(browser.getCurrentUrl()).toContain('#!/story/list');
});
});