Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
0c2c8773
Commit
0c2c8773
authored
Jan 29, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Converted integration_settings_form to axios
parent
5792faf4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
101 additions
and
75 deletions
+101
-75
app/assets/javascripts/integrations/integration_settings_form.js
...ets/javascripts/integrations/integration_settings_form.js
+23
-25
spec/javascripts/integrations/integration_settings_form_spec.js
...avascripts/integrations/integration_settings_form_spec.js
+78
-50
No files found.
app/assets/javascripts/integrations/integration_settings_form.js
View file @
0c2c8773
import
Flash
from
'
../flash
'
;
import
axios
from
'
../lib/utils/axios_utils
'
;
import
flash
from
'
../flash
'
;
export
default
class
IntegrationSettingsForm
{
export
default
class
IntegrationSettingsForm
{
constructor
(
formSelector
)
{
constructor
(
formSelector
)
{
...
@@ -95,29 +96,26 @@ export default class IntegrationSettingsForm {
...
@@ -95,29 +96,26 @@ export default class IntegrationSettingsForm {
*/
*/
testSettings
(
formData
)
{
testSettings
(
formData
)
{
this
.
toggleSubmitBtnState
(
true
);
this
.
toggleSubmitBtnState
(
true
);
$
.
ajax
({
type
:
'
PUT
'
,
return
axios
.
put
(
this
.
testEndPoint
,
formData
)
url
:
this
.
testEndPoint
,
.
then
(({
data
})
=>
{
data
:
formData
,
if
(
data
.
error
)
{
})
flash
(
`
${
data
.
message
}
${
data
.
service_response
}
`
,
'
alert
'
,
document
,
{
.
done
((
res
)
=>
{
title
:
'
Save anyway
'
,
if
(
res
.
error
)
{
clickHandler
:
(
e
)
=>
{
new
Flash
(
`
${
res
.
message
}
${
res
.
service_response
}
`
,
'
alert
'
,
document
,
{
e
.
preventDefault
();
title
:
'
Save anyway
'
,
this
.
$form
.
submit
();
clickHandler
:
(
e
)
=>
{
},
e
.
preventDefault
();
});
this
.
$form
.
submit
();
}
else
{
},
this
.
$form
.
submit
();
});
}
}
else
{
this
.
$form
.
submit
();
this
.
toggleSubmitBtnState
(
false
);
}
})
})
.
catch
(()
=>
{
.
fail
(()
=>
{
flash
(
'
Something went wrong on our end.
'
);
new
Flash
(
'
Something went wrong on our end.
'
);
this
.
toggleSubmitBtnState
(
false
);
})
});
.
always
(()
=>
{
this
.
toggleSubmitBtnState
(
false
);
});
}
}
}
}
spec/javascripts/integrations/integration_settings_form_spec.js
View file @
0c2c8773
import
MockAdaptor
from
'
axios-mock-adapter
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
IntegrationSettingsForm
from
'
~/integrations/integration_settings_form
'
;
import
IntegrationSettingsForm
from
'
~/integrations/integration_settings_form
'
;
describe
(
'
IntegrationSettingsForm
'
,
()
=>
{
describe
(
'
IntegrationSettingsForm
'
,
()
=>
{
...
@@ -109,91 +111,117 @@ describe('IntegrationSettingsForm', () => {
...
@@ -109,91 +111,117 @@ describe('IntegrationSettingsForm', () => {
describe
(
'
testSettings
'
,
()
=>
{
describe
(
'
testSettings
'
,
()
=>
{
let
integrationSettingsForm
;
let
integrationSettingsForm
;
let
formData
;
let
formData
;
let
mock
;
beforeEach
(()
=>
{
beforeEach
(()
=>
{
mock
=
new
MockAdaptor
(
axios
);
spyOn
(
axios
,
'
put
'
).
and
.
callThrough
();
integrationSettingsForm
=
new
IntegrationSettingsForm
(
'
.js-integration-settings-form
'
);
integrationSettingsForm
=
new
IntegrationSettingsForm
(
'
.js-integration-settings-form
'
);
formData
=
integrationSettingsForm
.
$form
.
serialize
();
formData
=
integrationSettingsForm
.
$form
.
serialize
();
});
});
it
(
'
should make an ajax request with provided `formData`
'
,
()
=>
{
afterEach
(
()
=>
{
const
deferred
=
$
.
Deferred
();
mock
.
restore
();
spyOn
(
$
,
'
ajax
'
).
and
.
returnValue
(
deferred
.
promise
()
);
}
);
integrationSettingsForm
.
testSettings
(
formData
);
it
(
'
should make an ajax request with provided `formData`
'
,
(
done
)
=>
{
integrationSettingsForm
.
testSettings
(
formData
)
.
then
(()
=>
{
expect
(
axios
.
put
).
toHaveBeenCalledWith
(
integrationSettingsForm
.
testEndPoint
,
formData
);
expect
(
$
.
ajax
).
toHaveBeenCalledWith
({
done
();
type
:
'
PUT
'
,
})
url
:
integrationSettingsForm
.
testEndPoint
,
.
catch
(
done
.
fail
);
data
:
formData
,
});
});
});
it
(
'
should show error Flash with `Save anyway` action if ajax request responds with error in test
'
,
()
=>
{
it
(
'
should show error Flash with `Save anyway` action if ajax request responds with error in test
'
,
(
done
)
=>
{
const
errorMessage
=
'
Test failed.
'
;
const
errorMessage
=
'
Test failed.
'
;
const
deferred
=
$
.
Deferred
();
mock
.
onPut
(
integrationSettingsForm
.
testEndPoint
).
reply
(
200
,
{
spyOn
(
$
,
'
ajax
'
).
and
.
returnValue
(
deferred
.
promise
());
error
:
true
,
message
:
errorMessage
,
integrationSettingsForm
.
testSettings
(
formData
);
service_response
:
'
some error
'
,
});
deferred
.
resolve
({
error
:
true
,
message
:
errorMessage
,
service_response
:
'
some error
'
});
integrationSettingsForm
.
testSettings
(
formData
)
.
then
(()
=>
{
const
$flashContainer
=
$
(
'
.flash-container
'
);
expect
(
$flashContainer
.
find
(
'
.flash-text
'
).
text
().
trim
()).
toEqual
(
'
Test failed. some error
'
);
expect
(
$flashContainer
.
find
(
'
.flash-action
'
)).
toBeDefined
();
expect
(
$flashContainer
.
find
(
'
.flash-action
'
).
text
().
trim
()).
toEqual
(
'
Save anyway
'
);
const
$flashContainer
=
$
(
'
.flash-container
'
);
done
();
expect
(
$flashContainer
.
find
(
'
.flash-text
'
).
text
().
trim
()).
toEqual
(
'
Test failed. some error
'
);
})
expect
(
$flashContainer
.
find
(
'
.flash-action
'
)).
toBeDefined
();
.
catch
(
done
.
fail
);
expect
(
$flashContainer
.
find
(
'
.flash-action
'
).
text
().
trim
()).
toEqual
(
'
Save anyway
'
);
});
});
it
(
'
should submit form if ajax request responds without any error in test
'
,
()
=>
{
it
(
'
should submit form if ajax request responds without any error in test
'
,
(
done
)
=>
{
const
deferred
=
$
.
Deferred
();
spyOn
(
integrationSettingsForm
.
$form
,
'
submit
'
);
spyOn
(
$
,
'
ajax
'
).
and
.
returnValue
(
deferred
.
promise
());
integrationSettingsForm
.
testSettings
(
formData
);
mock
.
onPut
(
integrationSettingsForm
.
testEndPoint
).
reply
(
200
,
{
error
:
false
,
});
spyOn
(
integrationSettingsForm
.
$form
,
'
submit
'
);
integrationSettingsForm
.
testSettings
(
formData
)
deferred
.
resolve
({
error
:
false
});
.
then
(()
=>
{
expect
(
integrationSettingsForm
.
$form
.
submit
).
toHaveBeenCalled
();
expect
(
integrationSettingsForm
.
$form
.
submit
).
toHaveBeenCalled
();
done
();
})
.
catch
(
done
.
fail
);
});
});
it
(
'
should submit form when clicked on `Save anyway` action of error Flash
'
,
()
=>
{
it
(
'
should submit form when clicked on `Save anyway` action of error Flash
'
,
(
done
)
=>
{
const
errorMessage
=
'
Test failed.
'
;
spyOn
(
integrationSettingsForm
.
$form
,
'
submit
'
);
const
deferred
=
$
.
Deferred
();
spyOn
(
$
,
'
ajax
'
).
and
.
returnValue
(
deferred
.
promise
());
integrationSettingsForm
.
testSettings
(
formData
);
const
errorMessage
=
'
Test failed.
'
;
mock
.
onPut
(
integrationSettingsForm
.
testEndPoint
).
reply
(
200
,
{
error
:
true
,
message
:
errorMessage
,
});
deferred
.
resolve
({
error
:
true
,
message
:
errorMessage
});
integrationSettingsForm
.
testSettings
(
formData
)
.
then
(()
=>
{
const
$flashAction
=
$
(
'
.flash-container .flash-action
'
);
expect
(
$flashAction
).
toBeDefined
();
const
$flashAction
=
$
(
'
.flash-container .flash-action
'
);
$flashAction
.
get
(
0
).
click
();
expect
(
$flashAction
).
toBeDefined
();
})
.
then
(()
=>
{
expect
(
integrationSettingsForm
.
$form
.
submit
).
toHaveBeenCalled
();
spyOn
(
integrationSettingsForm
.
$form
,
'
submit
'
);
done
(
);
$flashAction
.
get
(
0
).
click
();
})
expect
(
integrationSettingsForm
.
$form
.
submit
).
toHaveBeenCalled
(
);
.
catch
(
done
.
fail
);
});
});
it
(
'
should show error Flash if ajax request failed
'
,
()
=>
{
it
(
'
should show error Flash if ajax request failed
'
,
(
done
)
=>
{
const
errorMessage
=
'
Something went wrong on our end.
'
;
const
errorMessage
=
'
Something went wrong on our end.
'
;
const
deferred
=
$
.
Deferred
();
spyOn
(
$
,
'
ajax
'
).
and
.
returnValue
(
deferred
.
promise
());
integrationSettingsForm
.
testSettings
(
formData
);
mock
.
onPut
(
integrationSettingsForm
.
testEndPoint
).
networkError
(
);
deferred
.
reject
();
integrationSettingsForm
.
testSettings
(
formData
)
.
then
(()
=>
{
expect
(
$
(
'
.flash-container .flash-text
'
).
text
().
trim
()).
toEqual
(
errorMessage
);
expect
(
$
(
'
.flash-container .flash-text
'
).
text
().
trim
()).
toEqual
(
errorMessage
);
done
();
})
.
catch
(
done
.
fail
);
});
});
it
(
'
should always call `toggleSubmitBtnState` with `false` once request is completed
'
,
()
=>
{
it
(
'
should always call `toggleSubmitBtnState` with `false` once request is completed
'
,
(
done
)
=>
{
const
deferred
=
$
.
Deferred
();
mock
.
onPut
(
integrationSettingsForm
.
testEndPoint
).
networkError
();
spyOn
(
$
,
'
ajax
'
).
and
.
returnValue
(
deferred
.
promise
());
integrationSettingsForm
.
testSettings
(
formData
);
spyOn
(
integrationSettingsForm
,
'
toggleSubmitBtnState
'
);
spyOn
(
integrationSettingsForm
,
'
toggleSubmitBtnState
'
);
deferred
.
reject
();
expect
(
integrationSettingsForm
.
toggleSubmitBtnState
).
toHaveBeenCalledWith
(
false
);
integrationSettingsForm
.
testSettings
(
formData
)
.
then
(()
=>
{
expect
(
integrationSettingsForm
.
toggleSubmitBtnState
).
toHaveBeenCalledWith
(
false
);
done
();
})
.
catch
(
done
.
fail
);
});
});
});
});
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment