[koha-commits] main Koha release repository branch master updated. v3.22.00-616-g5f71faf

Git repo owner gitmaster at git.koha-community.org
Wed Feb 24 04:13:03 CET 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, master has been updated
       via  5f71faf97185efbfad69e4f2237c9e2d38e7a812 (commit)
       via  9ac68128d99aff4b8d3cabb98c3e84d0f0658b3a (commit)
       via  e3e507be9e9f90ff075fafba8013c8e54fa1fa00 (commit)
       via  3387a6114b70cf8de021c4cdf84a687e629efc82 (commit)
       via  afe9d02a819adfeec9468600805ee06df6082b21 (commit)
       via  acf2e684bd4118d40e3bc89b09c0852bc8732d04 (commit)
       via  ae5a199a551aa8a08f5d0c5b2338aeb194aba0c7 (commit)
       via  b44b7224e079a983c991aa06eaae11c350871814 (commit)
      from  17c7c685f12dd09186d369f84cc725984328c5fa (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 5f71faf97185efbfad69e4f2237c9e2d38e7a812
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Mon Jan 4 01:16:59 2016 -0500

    Bug 14097: Fixed missing test cases
    
    Fixed AllowPkiAuth issue caused by 15101.
    Added missing AudioAlerts
    
    TEST PLAN
    ---------
    1) prove -v t/db_dependent/UsageStats.t
       -- should pass after applying patch
    2) Run koha qa test tools
    
    Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg at gmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 9ac68128d99aff4b8d3cabb98c3e84d0f0658b3a
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Mon Aug 24 13:51:16 2015 +0200

    Bug 14097 : Changing AddReserve prototype call
    
    In response of Joubu comment #19
    
    Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg at gmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit e3e507be9e9f90ff075fafba8013c8e54fa1fa00
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Mon Aug 24 13:50:16 2015 +0200

    Bug 14097 : Avoid issue if the number of syspref shared is modified
    
    Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg at gmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit 3387a6114b70cf8de021c4cdf84a687e629efc82
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Sat May 23 00:22:26 2015 -0400

    Bug 14097 - Correct noise under Debian
    
    The first four patches do not create any noise under Ubuntu 14.04 LTS.
    
    Running on Debian Jessie:
    [SNIP]
    keys on reference is experimental at t/db_dependent/UsageStats.t line 88.
    keys on reference is experimental at t/db_dependent/UsageStats.t line 106.
    keys on reference is experimental at t/db_dependent/UsageStats.t line 119.
    keys on reference is experimental at t/db_dependent/UsageStats.t line 136.
    keys on reference is experimental at t/db_dependent/UsageStats.t line 153.
    keys on reference is experimental at t/db_dependent/UsageStats.t line 162.
    keys on reference is experimental at t/db_dependent/UsageStats.t line 587.
    [SNIP]
    
    Instead of having 'keys $foo->{bar}', 'keys %{$foo->{bar}}' was used.
    
    TEST PLAN
    ---------
    1) On a DEBIAN system (Jessie gives above messages)
       apply the first 4 patches interactively.
    2) $ prove t/db_dependent/UsageStats.t
       -- trigger noise like above.
    3) apply this patch
    4) $ prove t/db_dependent/UsageStats.t
       -- no noise triggered.
    5) koha qa test tools
    
    Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg at gmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit afe9d02a819adfeec9468600805ee06df6082b21
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Tue May 12 14:28:56 2015 +0200

    Bug 14097: Rollback issue and warning corrected
    
    The rollback issue came from '_count' testing.
    It used a 'DROP TABLE' and 'CREATE TABLE' which implicitly do autocommit.
    That's why the final rollback could not be.
    
    This patch no longer uses t::lib::TestBuilder either because it was the cause
    of the warning on Comment #1 :
    "DBIx::Class::Storage::txn_rollback(): A txn_rollback
    in nested transaction is ineffective! (depth 1) at
    t/lib/TestBuilder.pm line 308"
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Now data is preserved, no errors.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit acf2e684bd4118d40e3bc89b09c0852bc8732d04
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Mon May 4 15:20:01 2015 +0200

    Bug 14097: changing verif_systempreferences_values subroutine
    
    It's saving a large number of lines
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    All tests run, no koha-qa errors
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit ae5a199a551aa8a08f5d0c5b2338aeb194aba0c7
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Mon May 4 11:08:14 2015 +0200

    Bug 14097: Delete table issues before testing
    
    If we delete all biblio DB, we could have some troubles with foreign keys
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

commit b44b7224e079a983c991aa06eaae11c350871814
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Fri Apr 10 11:07:39 2015 +0200

    Bug 14097: Testing C4::UsageStats
    
    DESCRIPTION
    -----------
    
    Add unit tests to C4::UsageStats
    Subroutine :
    (V : tested, X : Not tested)
    
    	V  NeedUpdate
    	V  BuiltReport
    	X  ReportToCommunity
    	V  _count
    
    TEST PLAN
    ---------
    
    1. Apply patch
    2. prove -v t/db_dependent/UsageStats.t
    -- All tests should run successfully
    
    /!\ I have 1 warning but I don't know where it can come /!\
    (in cleanup) DBIx::Class::Storage::txn_rollback(): A txn_rollback
    in nested transaction is ineffective! (depth 1) at
    t/lib/TestBuilder.pm line 308
    
    TEST PLAN OPTIONAL
    ------------------
    
    Go check bug 13899 to see the coverage of this module.
    
    Coverage BEFORE this patch :
    Statement  :  40,5%
    Branch     :   0,0%
    Condition  :   0,0%
    Subroutine :  55,6%
    
    Coverage AFTER this patch :
    Statement  :  81,0%
    Branch     : 100,0%
    Condition  : 100,0%
    Subroutine :  88,8%
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com

-----------------------------------------------------------------------

Summary of changes:
 C4/UsageStats.pm            |   10 +-
 t/db_dependent/UsageStats.t |  595 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 600 insertions(+), 5 deletions(-)
 create mode 100644 t/db_dependent/UsageStats.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list