summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke "Jared" Bennett <lbennett@gitlab.com>2017-04-28 16:01:22 +0100
committerLuke "Jared" Bennett <lbennett@gitlab.com>2017-04-28 16:01:22 +0100
commit97633d561681a5c0f55472c1372bedca5fe3bffe (patch)
tree2bf4f19e71b01f04452b37749692810369660ca6
parent0e8afe1343497165bf609a840306ce26c6136a7b (diff)
downloadgitlab-ce-97633d561681a5c0f55472c1372bedca5fe3bffe.tar.gz
Fixed specs
-rw-r--r--app/assets/javascripts/raven/raven_config.js2
-rw-r--r--app/views/layouts/_head.html.haml5
-rw-r--r--config/application.rb1
-rw-r--r--lib/gitlab/gon_helper.rb2
-rw-r--r--spec/features/raven_js_spec.rb4
-rw-r--r--spec/javascripts/raven/raven_config_spec.js28
6 files changed, 24 insertions, 18 deletions
diff --git a/app/assets/javascripts/raven/raven_config.js b/app/assets/javascripts/raven/raven_config.js
index 6c20cd9aabd..43e55bc5415 100644
--- a/app/assets/javascripts/raven/raven_config.js
+++ b/app/assets/javascripts/raven/raven_config.js
@@ -61,7 +61,7 @@ const RavenConfig = {
environment: this.options.isProduction ? 'production' : 'development',
ignoreErrors: this.IGNORE_ERRORS,
ignoreUrls: this.IGNORE_URLS,
- shouldSendCallback: this.shouldSendSample,
+ shouldSendCallback: this.shouldSendSample.bind(this),
}).install();
},
diff --git a/app/views/layouts/_head.html.haml b/app/views/layouts/_head.html.haml
index b768ac5a36c..6123440b6e5 100644
--- a/app/views/layouts/_head.html.haml
+++ b/app/views/layouts/_head.html.haml
@@ -33,7 +33,10 @@
= webpack_bundle_tag "runtime"
= webpack_bundle_tag "common"
= webpack_bundle_tag "main"
- = webpack_bundle_tag "raven" if Gitlab.config.clientside_sentry_enabled
+ = webpack_bundle_tag "raven" if current_application_settings.clientside_sentry_enabled
+
+ = 'LUKETEST'
+ = current_application_settings.clientside_sentry_enabled
- if content_for?(:page_specific_javascripts)
= yield :page_specific_javascripts
diff --git a/config/application.rb b/config/application.rb
index 0ab8a24a5df..46652637c1f 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -72,6 +72,7 @@ module Gitlab
runners_token
secret_token
sentry_dsn
+ clientside_sentry_enabled
clientside_sentry_dsn
variables
)
diff --git a/lib/gitlab/gon_helper.rb b/lib/gitlab/gon_helper.rb
index 34f74232db6..848b3352c63 100644
--- a/lib/gitlab/gon_helper.rb
+++ b/lib/gitlab/gon_helper.rb
@@ -10,7 +10,7 @@ module Gitlab
gon.user_color_scheme = Gitlab::ColorSchemes.for_user(current_user).css_class
gon.katex_css_url = ActionController::Base.helpers.asset_path('katex.css')
gon.katex_js_url = ActionController::Base.helpers.asset_path('katex.js')
- gon.sentry_dsn = Gitlab.config.clientside_sentry_dsn if Gitlab.config.clientside_sentry_enabled
+ gon.sentry_dsn = current_application_settings.clientside_sentry_dsn if current_application_settings.clientside_sentry_enabled
gon.gitlab_url = Gitlab.config.gitlab.url
gon.is_production = Rails.env.production?
diff --git a/spec/features/raven_js_spec.rb b/spec/features/raven_js_spec.rb
index 74df52d80a7..0fe1c28bf8d 100644
--- a/spec/features/raven_js_spec.rb
+++ b/spec/features/raven_js_spec.rb
@@ -10,8 +10,7 @@ feature 'RavenJS', :feature, :js do
end
it 'should load raven if sentry is enabled' do
- allow_any_instance_of(SentryHelper).to receive_messages(sentry_dsn_public: 'https://key@domain.com/id',
- sentry_enabled?: true)
+ stub_application_setting(clientside_sentry_dsn: 'https://key@domain.com/id', clientside_sentry_enabled: true)
visit new_user_session_path
@@ -19,6 +18,7 @@ feature 'RavenJS', :feature, :js do
end
def has_requested_raven
+ p page.driver.network_traffic
page.driver.network_traffic.one? {|request| request.url.end_with?(raven_path)}
end
end
diff --git a/spec/javascripts/raven/raven_config_spec.js b/spec/javascripts/raven/raven_config_spec.js
index 78251b4f61b..b4c35420f90 100644
--- a/spec/javascripts/raven/raven_config_spec.js
+++ b/spec/javascripts/raven/raven_config_spec.js
@@ -77,6 +77,7 @@ describe('RavenConfig', () => {
describe('configure', () => {
let options;
let raven;
+ let ravenConfig;
beforeEach(() => {
options = {
@@ -85,22 +86,25 @@ describe('RavenConfig', () => {
isProduction: true,
};
+ ravenConfig = jasmine.createSpyObj('ravenConfig', ['shouldSendSample']);
raven = jasmine.createSpyObj('raven', ['install']);
spyOn(Raven, 'config').and.returnValue(raven);
- RavenConfig.configure.call({
- options,
- });
+ ravenConfig.options = options;
+ ravenConfig.IGNORE_ERRORS = 'ignore_errors';
+ ravenConfig.IGNORE_URLS = 'ignore_urls';
+
+ RavenConfig.configure.call(ravenConfig);
});
it('should call Raven.config', () => {
expect(Raven.config).toHaveBeenCalledWith(options.sentryDsn, {
whitelistUrls: options.whitelistUrls,
environment: 'production',
- ignoreErrors: Raven.IGNORE_ERRORS,
- ignoreUrls: Raven.IGNORE_URLS,
- shouldSendCallback: Raven.shouldSendSample,
+ ignoreErrors: ravenConfig.IGNORE_ERRORS,
+ ignoreUrls: ravenConfig.IGNORE_URLS,
+ shouldSendCallback: jasmine.any(Function),
});
});
@@ -109,18 +113,16 @@ describe('RavenConfig', () => {
});
it('should set .environment to development if isProduction is false', () => {
- options.isProduction = false;
+ ravenConfig.options.isProduction = false;
- RavenConfig.configure.call({
- options,
- });
+ RavenConfig.configure.call(ravenConfig);
expect(Raven.config).toHaveBeenCalledWith(options.sentryDsn, {
whitelistUrls: options.whitelistUrls,
environment: 'development',
- ignoreErrors: Raven.IGNORE_ERRORS,
- ignoreUrls: Raven.IGNORE_URLS,
- shouldSendCallback: Raven.shouldSendSample,
+ ignoreErrors: ravenConfig.IGNORE_ERRORS,
+ ignoreUrls: ravenConfig.IGNORE_URLS,
+ shouldSendCallback: jasmine.any(Function),
});
});
});