16 Apr, 2016
1 commit
-
It makes it harder for an user to mistakenly add a metric to their script that will never work. Signed-off-by: Eduardo Araújo <duduktamg@hotmail.com>
29 Jan, 2016
1 commit
-
This is expected to improve compatibility with reverse-proxies. Still, for full compatibility, regarding redirections, we still may need to set the default url options with the proxy host. Signed-off-by: Rafael Reggiani Manzo <rr.manzo@gmail.com>
20 Jan, 2016
2 commits
-
- Fix usage of MetricConfiguration models converted directly to hashes as parameters. It didn't reflect how they are actually sent and omitted some necessary parameters like metric_collector_name and metric_name/metric_code, which are now passed. - Fix KalibroConfigurations not being searched by the controller methods. We must be sure they exist, and fail with a 404 if they don't instead of failing only in one of the ownership testing methods. - Update the expectations for cache cleaning to include both Hotspot and Tree MetricConfigurations Signed off by: Daniel Miranda <danielkza2@gmail.com>
26 Oct, 2015
1 commit
-
The search and replace missed this. Now when a new CompoundMetriConfiguration gets created or updated the KalibroConfiguration show page gets a clear cache. Signed off by: Heitor Reis <marcheing@gmail.com>
21 May, 2015
3 commits
-
Still need to complete the refactoring of ReadingGroupOwnership and KalibroConfigurationOwnership Signed off by: Pedro Scocco <pedroscocco@gmail.com>
27 Apr, 2015
1 commit
-
Error handling for finding resources in controllers used a find_resource method. It was broken and was letting code pass-through after errors. In addition, cases for find methods for things other than simple IDs weren't handled. Replace it with an error handler in ApplicationController capturing RecordNotFound exceptions and returning the appropriate error pages (or JSON). Also, fix usages of find that should throw errors (using ActiveRecord methods ending with !) but didn't. Correspondly, fix all the tests that mocked the find_resource method, and correct expectations where needed. Signed-off-by: Daniel Miranda <danielkza2@gmail.com>
17 Apr, 2015
1 commit
-
Missing actions for menu selection Signed off by: Daniel Miranda <danielkza@gmail.com>
12 Feb, 2015
11 commits
-
Signed off by: Rafael Manzo <rr.manzo@gmail.com> Signed off by: Heitor Reis <marcheing@gmail.com>
-
Repository metric results waiting for kalibro configurations integration Signed off by: Daniel Paulino Alves <danpaulalves@gmail.com>
-
Fixed kalibro_configurations factory
-
Signed off by: Diego Araújo <diegoamc90@gmail.com>
-
Signed off by: Diego Araújo <diegoamc90@gmail.com>
-
Signed off by: Daniel Paulino Alves <danpaulalves@gmail.com>
-
Pending: Fix compound metric configuration tests. Signed off by: Rafael R. Manzo <rr.manzo@gmail.com>
-
Otherwise, ActiveResource requests would look for the unexistent route /mezuro_configurations instead of /kalibro_configuration which is the route expected by KalibroConfigurations webservice.
10 Dec, 2014
1 commit
07 Aug, 2014
1 commit
11 Jun, 2014
2 commits
-
signed-off-by: Pedro Vezza <pedro@vezza.com.br>
-
signed-off-by: Pedro Paulo Vezza Campos <pedro@vezza.com.br>
05 Jun, 2014
1 commit
-
This conversion is done by Transpec 2.2.1 with the following command: transpec * 258 conversions from: it { should ... } to: it { is_expected.to ... } * 82 conversions from: obj.should to: expect(obj).to * 16 conversions from: describe 'some model' { } to: describe 'some model', :type => :model { } * 12 conversions from: describe 'some controller' { } to: describe 'some controller', :type => :controller { } * 11 conversions from: describe 'some routing' { } to: describe 'some routing', :type => :routing { } * 8 conversions from: describe 'some helper' { } to: describe 'some helper', :type => :helper { } * 7 conversions from: be_false to: be_falsey * 6 conversions from: be_true to: be_truthy * 6 conversions from: it { should_not ... } to: it { is_expected.not_to ... } * 4 conversions from: obj.should_not to: expect(obj).not_to For more details: https://github.com/yujinakayama/transpec#supported-conversions Signed off by: Rafael Reggiani Manzo <rr.manzo@gmail.com>
26 Feb, 2014
10 commits
-
1. Included verification of the list of ranges of a compound metric configuration; 2. Included verification of the list of ranges of a metric configuration. Also fixed show action of compound metric configuration controller. signed-off-by: Renan Fichberg <rfichberg@gmail.com>
-
Signed off by: Guilherme Rojas V. de Lima <guilhermehrojas@gmail.com>
-
signed-off-by: Diego Araujo <diegoamc90@gmail.com>
-
Error on unit test had already been fixed on the range branch. signed-off-by: Renan Fichberg <rfichberg@gmail.com>
-
Included mock on compound metric configuration test. signed-off-by: Renan Fichberg <rfichberg@gmail.com>
-
Controller method Refactored new into partials Fixed destroy route Factories for compound metrics Update route with a helper Missing: Acceptance tests Update action Signed off by: Diego Araújo <diegoamc90@gmail.com>
-
Pending: Complete acceptance tests.