Implement RW verifier 29/172429/3
authorKichan Kwon <k_c.kwon@samsung.com>
Wed, 14 Mar 2018 02:55:57 +0000 (11:55 +0900)
committerKichan Kwon <k_c.kwon@samsung.com>
Mon, 19 Mar 2018 02:42:10 +0000 (11:42 +0900)
- build.sh : (build and) package each test
- test.sh : install test package and make RW data
- verify.sh : compare two RW data set (before/after upgrade)

Change-Id: I0f3a8ae88046598d02acd2f30a4f2e6932c687ac
Signed-off-by: Kichan Kwon <k_c.kwon@samsung.com>
15 files changed:
CMakeLists.txt [new file with mode: 0644]
LICENSE.Apache-2.0 [new file with mode: 0644]
README [new file with mode: 0644]
build.sh [new file with mode: 0755]
result/.gitignore [new file with mode: 0644]
rw-verifier-macro.inc [new file with mode: 0644]
template/packaging/template.manifest [new file with mode: 0644]
template/packaging/template.spec [new file with mode: 0644]
template/src/CMakeLists.txt [new file with mode: 0644]
template/src/dump.sh [new file with mode: 0755]
template/src/dumpfile_list [new file with mode: 0644]
template/src/init.sh [new file with mode: 0755]
test.sh [new file with mode: 0755]
upgrade_version_info [new file with mode: 0644]
verify.sh [new file with mode: 0755]

diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644 (file)
index 0000000..3cae99e
--- /dev/null
@@ -0,0 +1,13 @@
+CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
+PROJECT(rw_verifier)
+
+INCLUDE(FindPkgConfig)
+
+SET(PKG_DIR "${CMAKE_SOURCE_DIR}/src/${PKG_NAME}")
+
+INSTALL(FILES ${PKG_DIR}/init.sh DESTINATION ${INSTALL_PATH})
+INSTALL(FILES ${PKG_DIR}/dump.sh DESTINATION ${INSTALL_PATH})
+
+IF(EXISTS "${PKG_DIR}/CMakeLists.txt")
+       ADD_SUBDIRECTORY(${PKG_DIR})
+ENDIF()
diff --git a/LICENSE.Apache-2.0 b/LICENSE.Apache-2.0
new file mode 100644 (file)
index 0000000..1c3515d
--- /dev/null
@@ -0,0 +1,204 @@
+Copyright (c) 2000 - 2017 Samsung Electronics Co., Ltd. All rights reserved.\r
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+\r
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..27d8cd1
--- /dev/null
+++ b/README
@@ -0,0 +1,19 @@
+                       < RW Verify Process >
+
+"input data" -- init --> (target) -- dump --> "output data1" \
+                            |                                 \
+                          update                               \
+                            |                                  /---> compare
+                            V                                 /
+                         (target) -- dump --> "output data2" /
+
+* The verify tool should be able to:
+ - input test data to module
+ - extract data from module
+
+* If a verify tool wants to be executed, it should contain
+ - two scripts (under src/NAME) : init.sh, dump.sh
+ - packaging spec file (under packaging/NAME)
+
+* The verify process checks the integrity
+ by comparing extracted data before/after update.
diff --git a/build.sh b/build.sh
new file mode 100755 (executable)
index 0000000..ec27e9f
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+################################
+# build.sh: build test package #
+################################
+
+RW_VERIFIER_MACRO="rw-verifier-macro.inc"
+
+Build_Test_Package() {
+       TEST=$1
+       if [ -r "packaging/$TEST/$TEST.spec" ]; then
+               gbs build -A armv7l -B $GBS_BUILD_ROOT --packaging-dir packaging/$TEST --spec $TEST.spec --include-all --define "PKG_NAME $TEST" --define "INSTALL_PATH $RW_VERIFIER_ROOT/$TEST"
+       else
+               echo "$TEST.spec does not exist"
+       fi
+}
+
+# Main
+
+if [ $# -ne 1 ]; then
+       echo "Usage: $0 [all|package_name]"
+       exit
+fi
+
+# Load macro
+if [ ! -r "$RW_VERIFIER_MACRO" ]; then
+       echo "Fail to read $RW_VERIFIER_MACRO"
+       exit
+fi
+source $RW_VERIFIER_MACRO
+
+if [ $1 = "all" ]; then
+       TESTS=$(ls packaging)
+       for TEST in $TESTS; do
+               Build_Test_Package $TEST
+       done
+else
+       Build_Test_Package $1
+fi
diff --git a/result/.gitignore b/result/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/rw-verifier-macro.inc b/rw-verifier-macro.inc
new file mode 100644 (file)
index 0000000..251c2c6
--- /dev/null
@@ -0,0 +1,68 @@
+#!/bin/bash
+
+# Text color
+YELLOW="\033[1;33m"
+GREEN="\033[0;32m"
+RED="\033[0;31m"
+NO="\033[0m"
+
+# Predefined path
+RW_VERIFIER_ROOT=/opt/usr/rw_verifier
+GBS_BUILD_ROOT=~/GBS-ROOT-RW-VERIFIER
+
+# Pass_Log TAG (MSG)
+Pass_Log()
+{
+       if [ $# -eq 2 ]; then
+               MSG="("$2")"
+       elif [ $# -eq 1 ]; then
+               MSG=""
+       else
+               return 1
+       fi
+
+       echo -e "$1: ${GREEN}PASS${NO} $MSG"
+}
+
+# Fail_Log TAG (MSG)
+Fail_Log()
+{
+       if [ $# -eq 2 ]; then
+               MSG="("$2")"
+       elif [ $# -eq 1 ]; then
+               MSG=""
+       else
+               return 1
+       fi
+
+       echo -e "$1: ${RED}FAIL${NO} $MSG"
+}
+
+
+# Use $VERSION after calling this function
+TARGET_VER="invalid_target_version"
+Get_Target_Version()
+{
+       TARGET_VER=$(sdb -s $DEV shell cat /etc/config/model-config.xml | grep platform.version | sed -e 's/<key.*">//g' -e 's/<.*>//g' -e 's/\s//g')
+}
+
+# Use $OLD_VER and $NEW_VER after calling this function
+OLD_VER="invalid_old_version"
+NEW_VER="invalid_new_version"
+Get_Upgrade_Version()
+{
+       VERSION_FILE="upgrade_version_info"
+       PREFIX_OLD="OLD_VER="
+       PREFIX_NEW="NEW_VER="
+
+       while read LINE; do
+               PARSED=${LINE##$PREFIX_OLD}
+               if [ $PARSED != $LINE ]; then
+                       OLD_VER=$PARSED
+               fi
+               PARSED=${LINE##$PREFIX_NEW}
+               if [ $PARSED != $LINE ]; then
+                       NEW_VER=$PARSED
+               fi
+       done < $VERSION_FILE
+}
diff --git a/template/packaging/template.manifest b/template/packaging/template.manifest
new file mode 100644 (file)
index 0000000..a76fdba
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+       <request>
+               <domain name="_" />
+       </request>
+</manifest>
diff --git a/template/packaging/template.spec b/template/packaging/template.spec
new file mode 100644 (file)
index 0000000..659b0b1
--- /dev/null
@@ -0,0 +1,38 @@
+Name:       rw-verifier-test
+Summary:    Test RW update
+Version:    0.0.1
+Release:    0
+Group:      Development/Tools
+License:    Apache-2.0
+Source0:    %{name}-%{version}.tar.gz
+Source1:       %{name}.manifest
+
+BuildRequires:  cmake
+Requires(post): /sbin/ldconfig
+Requires(postun): /sbin/ldconfig
+
+%description
+Test RW update
+
+%prep
+%setup -q
+cp %{SOURCE1} .
+
+%build
+MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'`
+%cmake . -DFULLVER=%{version} -DMAJORVER=${MAJORVER} \
+               -DPKG_NAME=%{PKG_NAME} -DINSTALL_PATH=%{INSTALL_PATH}
+
+make %{?jobs:-j%jobs}
+
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}/%{INSTALL_PATH}
+%make_install
+
+%files
+%defattr(700,root,root,-)
+%manifest %{name}.manifest
+%license LICENSE.Apache-2.0
+%{INSTALL_PATH}/init.sh
+%{INSTALL_PATH}/dump.sh
diff --git a/template/src/CMakeLists.txt b/template/src/CMakeLists.txt
new file mode 100644 (file)
index 0000000..99624df
--- /dev/null
@@ -0,0 +1,7 @@
+CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
+PROJECT("RW verifier test")
+
+INCLUDE_DIRECTORIES(${PKG_DIR}/include)
+INCLUDE_DIRECTORIES(${PKG_DIR}/src)
+
+INSTALL(TARGETS ${PKG_NAME} DESTINATION ${INSTALL_PATH})
diff --git a/template/src/dump.sh b/template/src/dump.sh
new file mode 100755 (executable)
index 0000000..7314429
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+TEST_ROOT=$1
diff --git a/template/src/dumpfile_list b/template/src/dumpfile_list
new file mode 100644 (file)
index 0000000..5edbc9e
--- /dev/null
@@ -0,0 +1,5 @@
+# Write the list of all dump files
+# These files should be located same with the test-installed path
+# This path is passed to both init.sh and dump.sh via first argument
+mydumpfile1
+mydumpfile2
diff --git a/template/src/init.sh b/template/src/init.sh
new file mode 100755 (executable)
index 0000000..7314429
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+TEST_ROOT=$1
diff --git a/test.sh b/test.sh
new file mode 100755 (executable)
index 0000000..47a75ca
--- /dev/null
+++ b/test.sh
@@ -0,0 +1,207 @@
+#!/bin/bash
+
+#############################
+# test.sh: make a test data #
+#############################
+
+RW_VERIFIER_MACRO="rw-verifier-macro.inc"
+
+Get_Connected_Device() {
+       LOG_TAG="Connect"
+       DEVS=$(sdb devices)
+       if [ "z$DEVS" = "z" ]; then
+               Fail_Log $LOG_TAG "There is no connected device"
+               exit
+       fi
+       DEV=$(echo "$DEVS" | sed -n '2p' | awk '{print $1}')
+       if [ ! "z$DEV" = "z" ]; then
+               Pass_Log $LOG_TAG "Get the first device $DEV"
+       else
+               Fail_Log $LOG_TAG "Failed to get connected device"
+               exit
+       fi
+}
+
+# 0 on success
+Find_File_on_Target()
+{
+       FILE=$1
+       FIND_RESULT=$(sdb -s $DEV shell ls $FILE | sed 's/\r//')
+
+       if [ "$FIND_RESULT" != "$FILE" ]; then
+               return 1
+       fi
+
+       return 0
+}
+
+# 0 on success
+Install_Package()
+{
+       LOG_TAG="Install"
+       TEST=$1
+       RPM_PATH=$GBS_BUILD_ROOT/local/repos/tizen/armv7l/RPMS
+       TEST_RPM=$(ls $RPM_PATH/$TEST*.rpm | sed -n '1p')
+
+       if [ -z "$TEST_RPM" ]; then
+               Fail_Log $LOG_TAG "Any $TEST RPM does not exist on $RPM_PATH"
+               return 1
+       fi
+
+       # Remove old one
+       sdb -s $DEV shell rpm -e --nodeps $TEST
+       sleep 1
+       sdb -s $DEV shell rm -r $RW_VERIFIER_ROOT/$TEST
+       sleep 1
+
+       # Install new one
+       sdb -s $DEV push $TEST_RPM /tmp
+       sdb -s $DEV shell rpm -i /tmp/$TEST*
+
+       Pass_Log $LOG_TAG
+       return 0
+}
+
+# 0 on success
+Initialize_Data()
+{
+       LOG_TAG="Initialize"
+       TEST=$1
+       TEST_ROOT=$RW_VERIFIER_ROOT/$TEST
+       INIT_SCRIPT=$TEST_ROOT/init.sh
+
+       Find_File_on_Target $INIT_SCRIPT
+       if [ $? -ne 0 ]; then
+               Fail_Log $LOG_TAG "$INIT_SCRIPT does not exist on target"
+               return 1
+       fi
+
+       sdb -s $DEV shell $INIT_SCRIPT $TEST_ROOT
+       Pass_Log $LOG_TAG
+       return 0
+}
+
+# 0 on success
+Dump_Data()
+{
+       LOG_TAG="Dump"
+       TEST=$1
+       TEST_ROOT=$RW_VERIFIER_ROOT/$TEST
+       DUMP_SCRIPT=$TEST_ROOT/dump.sh
+
+       Find_File_on_Target $DUMP_SCRIPT
+       if [ $? -ne 0 ]; then
+               Fail_Log $LOG_TAG "$DUMP_SCRIPT does not exist on target"
+               return 1
+       fi
+
+       sdb -s $DEV shell $DUMP_SCRIPT $TEST_ROOT
+       Pass_Log $LOG_TAG
+       return 0
+}
+
+# 0 on success
+Bring_Dumpfile()
+{
+       LOG_TAG="Bring"
+       TEST=$1
+       TEST_ROOT=$RW_VERIFIER_ROOT/$TEST
+       DUMPFILE_LIST=src/$TEST/dumpfile_list
+
+       if [ -r "$DUMPFILE_LIST" ]; then
+               RESULT_DIR=result/$TEST/$TARGET_VER
+               mkdir -p $RESULT_DIR
+               rm -r $RESULT_DIR/*
+
+               while read DUMPFILE; do
+                       sdb -s $DEV pull $TEST_ROOT/$DUMPFILE $RESULT_DIR
+                       if [ -f "$RESULT_DIR/$DUMPFILE" ]; then
+                               echo "$DUMPFILE"
+                       else
+                               Fail_Log $LOG_TAG "Failed to bring $DUMPFILE"
+                               return 2
+                       fi
+               done < $DUMPFILE_LIST
+               Pass_Log $LOG_TAG
+               return 0
+       else
+               Fail_Log $LOG_TAG "$DUMPFILE_LIST does not exist on host"
+               return 1
+       fi
+}
+
+Init_and_Dump()
+{
+       TEST=$1
+
+       echo -e "========== Test ${YELLOW}$TEST${NO} =========="
+
+       if [ "$TARGET_VER" = "$OLD_VER" ]; then
+               echo "Upgrade: not yet (install, initialize and dump)"
+               Install_Package $TEST
+               if [ $? -ne 0 ]; then
+                       echo "========== End Test =========="
+                       exit
+               fi
+               Initialize_Data $TEST
+               if [ $? -ne 0 ]; then
+                       echo "========== End Test =========="
+                       exit
+               fi
+       else
+               echo "Upgrade: done (only dump)"
+       fi
+
+       Dump_Data $TEST
+       if [ $? -ne 0 ]; then
+               echo "========== End Test =========="
+               exit
+       fi
+
+       Bring_Dumpfile $TEST
+
+       echo "========== End Test =========="
+}
+
+# Main
+
+# Parse argument
+if [ $# -eq 2 ]; then
+       CANDIDATE=$1
+       DEV=$2
+elif [ $# -eq 1 ]; then
+       CANDIDATE=$1
+else
+       echo "Usage: $0 [all|package_name] (device_name)"
+       exit
+fi
+
+# Load macro
+if [ ! -r $RW_VERIFIER_MACRO ]; then
+       echo "Fail to read $RW_VERIFIER_MACRO"
+       exit
+fi
+source $RW_VERIFIER_MACRO
+
+# Connect with target
+if [ "z$DEV" = "z" ]; then
+       Get_Connected_Device
+fi
+
+sdb -s $DEV root on
+sdb -s $DEV shell mount -o rw,remount /
+sdb -s $DEV shell mkdir -p $RW_VERIFIER_ROOT
+
+Get_Upgrade_Version
+Get_Target_Version
+
+if [ "$CANDIDATE" = "all" ]; then
+       # Test all tests
+       TESTS=$(ls src)
+       for TEST in $TESTS; do
+               Init_and_Dump $TEST
+       done
+else
+       # Test specific test
+       Init_and_Dump $CANDIDATE
+fi
diff --git a/upgrade_version_info b/upgrade_version_info
new file mode 100644 (file)
index 0000000..b35f520
--- /dev/null
@@ -0,0 +1,2 @@
+OLD_VER=4.0
+NEW_VER=5.0
diff --git a/verify.sh b/verify.sh
new file mode 100755 (executable)
index 0000000..4d33a47
--- /dev/null
+++ b/verify.sh
@@ -0,0 +1,74 @@
+#!/bin/bash
+
+##################################
+# verify.sh: compare dumped data #
+##################################
+
+RW_VERIFIER_MACRO=rw-verifier-macro.inc
+
+Verify()
+{
+       TEST=$1
+       DUMPFILE_LIST=src/$TEST/dumpfile_list
+
+       echo -e "========== Verify ${YELLOW}$TEST${NO} =========="
+       PASSED=0
+       TOTAL=0
+
+       if [ -r "$DUMPFILE_LIST" ]; then
+               while read DUMPFILE; do
+                       ((TOTAL=${TOTAL} + 1))
+                       DUMPFILE_OLD=result/$TEST/$OLD_VER/$DUMPFILE
+                       DUMPFILE_NEW=result/$TEST/$NEW_VER/$DUMPFILE
+                       if [ -f "$DUMPFILE_OLD" ] && [ -f "$DUMPFILE_NEW" ]; then
+                               RESULT=$(diff $DUMPFILE_OLD $DUMPFILE_NEW)
+                               if [ "z$RESULT" = "z" ]; then
+                                       Pass_Log $DUMPFILE
+                                       ((PASSED=${PASSED} + 1))
+                               else
+                                       echo "Diff:"
+                                       echo "$RESULT"
+                                       Fail_Log $DUMPFILE "Two files are different"
+                               fi
+                       else
+                               Fail_Log $DUMPFILE "Not exist"
+                       fi
+               done < $DUMPFILE_LIST
+               echo ""
+               if [ $PASSED -eq $TOTAL ]; then
+                       Pass_Log "Result" $PASSED/$TOTAL
+               else
+                       Fail_Log "Result" $PASSED/$TOTAL
+               fi
+       else
+               Fail_Log "Result" "$DUMPFILE_LIST does not exist on host"
+       fi
+
+       echo "========== End Verification =========="
+}
+
+# Main
+
+if [ $# -ne 1 ]; then
+       echo "Usage: $0 [all|package_name]"
+       exit
+fi
+
+# Load macro
+if [ ! -r "$RW_VERIFIER_MACRO" ]; then
+       echo "Fail to read $RW_VERIFIER_MACRO"
+       exit
+fi
+source $RW_VERIFIER_MACRO
+
+Get_Upgrade_Version
+
+CANDIDATE=$1
+if [ "$CANDIDATE" = "all" ]; then
+       TESTS=$(ls result)
+       for TEST in $TESTS; do
+               Verify $TEST
+       done
+else
+       Verify $CANDIDATE
+fi