diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-03 23:06:45 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-10 14:05:59 +0100 |
commit | 605a62f9e0342e63b55b50e76db3260dee1ef748 (patch) | |
tree | 798721d3f9b4af5df1eda911f37353a317deab44 /sonar-core/src/test/resources | |
parent | e1104eb967ad973c40ac2ae7f50732aaef0cc734 (diff) | |
download | sonarqube-605a62f9e0342e63b55b50e76db3260dee1ef748.tar.gz sonarqube-605a62f9e0342e63b55b50e76db3260dee1ef748.zip |
SONAR-2570 compress db table FILE_SOURCES
Diffstat (limited to 'sonar-core/src/test/resources')
7 files changed, 28 insertions, 26 deletions
diff --git a/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/delete_file_sources_of_disabled_resources-result.xml b/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/delete_file_sources_of_disabled_resources-result.xml index 13b1c270dc4..7caaa526513 100644 --- a/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/delete_file_sources_of_disabled_resources-result.xml +++ b/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/delete_file_sources_of_disabled_resources-result.xml @@ -1,5 +1,5 @@ <dataset> - <file_sources id="2" project_uuid="ABCD" file_uuid="KLMN" data="[null]" line_hashes="[null]" data_hash="321654988" + <file_sources id="2" project_uuid="ABCD" file_uuid="KLMN" binary_data="[null]" line_hashes="[null]" data_hash="321654988" created_at="123456789" updated_at="123456789" src_hash="123456"/> </dataset> diff --git a/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/delete_file_sources_of_disabled_resources.xml b/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/delete_file_sources_of_disabled_resources.xml index fa5e4a7828d..aaae9915d98 100644 --- a/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/delete_file_sources_of_disabled_resources.xml +++ b/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/delete_file_sources_of_disabled_resources.xml @@ -72,8 +72,8 @@ depth="[null]" scope="PRJ" qualifier="TRK" created_at="1228222680000" build_date="1228222680000" version="[null]" path="[null]"/> - <file_sources id="1" project_uuid="ABCD" file_uuid="GHIJ" data="[null]" line_hashes="[null]" data_hash="321654987" + <file_sources id="1" project_uuid="ABCD" file_uuid="GHIJ" binary_data="[null]" line_hashes="[null]" data_hash="321654987" created_at="123456789" updated_at="123456789" src_hash="12345"/> - <file_sources id="2" project_uuid="ABCD" file_uuid="KLMN" data="[null]" line_hashes="[null]" data_hash="321654988" + <file_sources id="2" project_uuid="ABCD" file_uuid="KLMN" binary_data="[null]" line_hashes="[null]" data_hash="321654988" created_at="123456789" updated_at="123456789" src_hash="123456"/> </dataset> diff --git a/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/select_purgeable_file_uuids.xml b/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/select_purgeable_file_uuids.xml index cfc39014c9d..5bbb5aa5891 100644 --- a/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/select_purgeable_file_uuids.xml +++ b/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/select_purgeable_file_uuids.xml @@ -79,8 +79,8 @@ depth="[null]" scope="PRJ" qualifier="TRK" created_at="1228222680000" build_date="1228222680000" version="[null]" path="[null]"/> - <file_sources id="1" project_uuid="ABCD" file_uuid="GHIJ" data="[null]" line_hashes="[null]" data_hash="321654987" + <file_sources id="1" project_uuid="ABCD" file_uuid="GHIJ" binary_data="[null]" line_hashes="[null]" data_hash="321654987" created_at="123456789" updated_at="123456789"/> - <file_sources id="2" project_uuid="ABCD" file_uuid="KLMN" data="[null]" line_hashes="[null]" data_hash="321654988" + <file_sources id="2" project_uuid="ABCD" file_uuid="KLMN" binary_data="[null]" line_hashes="[null]" data_hash="321654988" created_at="123456789" updated_at="123456789"/> </dataset> diff --git a/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/shouldDeleteProject.xml b/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/shouldDeleteProject.xml index 1f164a2692e..d50cc3926f5 100644 --- a/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/shouldDeleteProject.xml +++ b/sonar-core/src/test/resources/org/sonar/core/purge/PurgeDaoTest/shouldDeleteProject.xml @@ -103,6 +103,6 @@ depth="[null]" scope="FIL" qualifier="FIL" created_at="1228222680000" build_date="1228222680000" version="[null]" path="[null]"/> - <file_sources id="1" project_uuid="A" file_uuid="D" data="[null]" line_hashes="[null]" data_hash="321654987" + <file_sources id="1" project_uuid="A" file_uuid="D" binary_data="[null]" line_hashes="[null]" data_hash="321654987" created_at="123456789" updated_at="123456789"/> </dataset> diff --git a/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/insert-result.xml b/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/insert-result.xml index f43f9f06564..74bca5ec788 100644 --- a/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/insert-result.xml +++ b/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/insert-result.xml @@ -1,16 +1,17 @@ <dataset> - <file_sources id="101" project_uuid="abcd" file_uuid="ab12" - data="aef12a,alice,2014-04-25T12:34:56+0100,,class Foo" data_hash="hash" - line_hashes="truc" - src_hash="12345" - created_at="1414597442000" updated_at="1414683842000" /> + <file_sources id="101" project_uuid="PRJ_UUID" file_uuid="FILE1_UUID" + binary_data="abcde" data_hash="hash" + line_hashes="ABC\nDEF\nGHI" + src_hash="FILE_HASH" + created_at="1500000000000" updated_at="1500000000000" /> - <file_sources id="102" project_uuid="prj" file_uuid="file" - data="bla bla" data_hash="hash2" - line_hashes="foo bar" - src_hash="hache" - created_at="1414770242000" updated_at="1414770242000" /> + <file_sources id="102" project_uuid="PRJ_UUID" file_uuid="FILE2_UUID" + binary_data="[ignore]" + data_hash="FILE2_DATA_HASH" + line_hashes="LINE1_HASH\nLINE2_HASH" + src_hash="FILE2_HASH" + created_at="1500000000000" updated_at="1500000000001" /> </dataset> diff --git a/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/shared.xml b/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/shared.xml index fbfa94a6ddd..79a340f841d 100644 --- a/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/shared.xml +++ b/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/shared.xml @@ -1,9 +1,9 @@ <dataset> - <file_sources id="101" project_uuid="abcd" file_uuid="ab12" - data="aef12a,alice,2014-04-25T12:34:56+0100,,class Foo" data_hash="hash" - line_hashes="truc" - src_hash="12345" - created_at="1414597442000" updated_at="1414683842000" /> + <file_sources id="101" project_uuid="PRJ_UUID" file_uuid="FILE1_UUID" + binary_data="abcde" data_hash="hash" + line_hashes="ABC\nDEF\nGHI" + src_hash="FILE_HASH" + created_at="1500000000000" updated_at="1500000000000" /> </dataset> diff --git a/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/update-result.xml b/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/update-result.xml index 64ff997152f..40cbfa91a43 100644 --- a/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/update-result.xml +++ b/sonar-core/src/test/resources/org/sonar/core/source/db/FileSourceDaoTest/update-result.xml @@ -1,10 +1,11 @@ <dataset> - <file_sources id="101" project_uuid="abcd" file_uuid="ab12" - data="updated data" data_hash="hash2" - line_hashes="foo2 bar2" - src_hash="123456" - created_at="1414597442000" updated_at="1414770242000" /> + <file_sources id="101" project_uuid="PRJ_UUID" file_uuid="FILE1_UUID" + binary_data="[ignore]" + data_hash="NEW_DATA_HASH" + line_hashes="NEW_LINE_HASHES" + src_hash="NEW_FILE_HASH" + created_at="1500000000000" updated_at="1500000000002" /> </dataset> |