arvados.git
9 years ago4823: Docstring and comment fixes.
Peter Amstutz [Tue, 3 Mar 2015 14:34:05 +0000 (09:34 -0500)]
4823: Docstring and comment fixes.

9 years ago4823: More fixes and cleanups.
Peter Amstutz [Mon, 2 Mar 2015 20:51:55 +0000 (15:51 -0500)]
4823: More fixes and cleanups.

* Renamed SynchronizedCollectionBase to RichCollectionBase
* Renamed arvapi parameter of one_task_per_input_file to api_client
* KeepLocator.stripped() returns bare hash if self.size is None
* Permit closing an ArvadosFileWriter more than once
* Fix various docstrings
* Strive to follow PEP 8 spacing guidelines

9 years ago4823: Add flush() to ArvadosFile. Fix tests to avoid using internal APIs. Fix
Peter Amstutz [Thu, 26 Feb 2015 18:19:50 +0000 (13:19 -0500)]
4823: Add flush() to ArvadosFile.  Fix tests to avoid using internal APIs.  Fix
import in _normalize_stream.  Make KeepRequestError more generic (now
represents a list of "request errors" instead of "service errors").

9 years ago4823: Add arvapi parameter to one_task_per_input_file() to solve mocking
Peter Amstutz [Wed, 25 Feb 2015 16:00:05 +0000 (11:00 -0500)]
4823: Add arvapi parameter to one_task_per_input_file() to solve mocking
problems.  Refactor Collection.copy() and add Collection.add().  Fix docstring
bugs.

9 years agoMerge branch 'master' into 4823-python-sdk-writable-collection-api
Peter Amstutz [Wed, 25 Feb 2015 14:39:36 +0000 (09:39 -0500)]
Merge branch 'master' into 4823-python-sdk-writable-collection-api

9 years ago4823: Remove sync_mode() from Collection in favor of writable() flag.
Peter Amstutz [Tue, 24 Feb 2015 22:13:33 +0000 (17:13 -0500)]
4823: Remove sync_mode() from Collection in favor of writable() flag.
Collection constructor raises ArgumentError() on bad manifest.  Fix
assertEquals() -> assertEqual().

9 years agoMerge branch '3785-job-log-collection-owner' closes #3785
Peter Amstutz [Tue, 24 Feb 2015 14:22:31 +0000 (09:22 -0500)]
Merge branch '3785-job-log-collection-owner' closes #3785

9 years agoMerge branch '4520-arv-copy-project-uuid' closes #4520
Peter Amstutz [Mon, 23 Feb 2015 21:49:23 +0000 (16:49 -0500)]
Merge branch '4520-arv-copy-project-uuid' closes #4520

9 years ago4520: Tweak test that put(u'foo') does the right thing.
Peter Amstutz [Mon, 23 Feb 2015 21:48:44 +0000 (16:48 -0500)]
4520: Tweak test that put(u'foo') does the right thing.

9 years ago4520: Coerce unicode strings to ascii in put(). Use result.content (returns
Peter Amstutz [Mon, 23 Feb 2015 21:36:09 +0000 (16:36 -0500)]
4520: Coerce unicode strings to ascii in put().  Use result.content (returns
literal result bytes) instead result.text (returns unicode) when processing
Keep responses.

9 years ago3785: Log tab is no longer suppressed for anonymous users.
Peter Amstutz [Mon, 23 Feb 2015 21:09:48 +0000 (16:09 -0500)]
3785: Log tab is no longer suppressed for anonymous users.

9 years ago4520: manifest_text() is utf-8 encoded by default so it can be safely put() to
Peter Amstutz [Mon, 23 Feb 2015 20:17:19 +0000 (15:17 -0500)]
4520: manifest_text() is utf-8 encoded by default so it can be safely put() to
Keep.  Add test that calling put() with a unicode string raises an error.
Fetching user uuid in arv-copy uses num_retries.

9 years ago4520: Better checking to see if collection already exists at the destination.
Peter Amstutz [Mon, 23 Feb 2015 19:17:12 +0000 (14:17 -0500)]
4520: Better checking to see if collection already exists at the destination.
Set args.project_uuid to default value (current user uuid) if not set on
command line to simplify code.

9 years ago4520: Bonus fix because arv-copy was giving KeepClient.put() unicode strings
Peter Amstutz [Mon, 23 Feb 2015 18:55:41 +0000 (13:55 -0500)]
4520: Bonus fix because arv-copy was giving KeepClient.put() unicode strings
instead of byte strings.  KeepClient will now reject that.

9 years ago4520: Refactor code to create the collection record. Also refactored code
Peter Amstutz [Mon, 23 Feb 2015 18:54:47 +0000 (13:54 -0500)]
4520: Refactor code to create the collection record.  Also refactored code
which creates Docker metadata links so that copying any collection which
represents a Docker image will also copy over the metadata.

9 years ago3785: Upload job log to collection with --project-uuid same owner_uuid as job.
Peter Amstutz [Mon, 23 Feb 2015 16:45:32 +0000 (11:45 -0500)]
3785: Upload job log to collection with --project-uuid same owner_uuid as job.

9 years agoMerge branch '5277-fuse-mtime-fix' closes #5277
Peter Amstutz [Mon, 23 Feb 2015 15:48:04 +0000 (10:48 -0500)]
Merge branch '5277-fuse-mtime-fix' closes #5277

9 years agoMerge branch 'master' into 4823-python-sdk-writable-collection-api
Peter Amstutz [Mon, 23 Feb 2015 15:16:38 +0000 (10:16 -0500)]
Merge branch 'master' into 4823-python-sdk-writable-collection-api

9 years ago4823: Clean up imports in collection.py
Peter Amstutz [Mon, 23 Feb 2015 15:16:08 +0000 (10:16 -0500)]
4823: Clean up imports in collection.py

9 years ago4823: Handle edge cases of files named '.' so that the FUSE test passes. Added
Peter Amstutz [Mon, 23 Feb 2015 14:44:27 +0000 (09:44 -0500)]
4823: Handle edge cases of files named '.' so that the FUSE test passes.  Added
tests for invalid manifests.  Defer populating CollectionReader streams until
needed to avoid extra copy of the manifest.

9 years ago4823: Fix tests broken by prior refactoring. Renamed 'api.py' to 'apisetup.py'
Peter Amstutz [Fri, 20 Feb 2015 20:58:14 +0000 (15:58 -0500)]
4823: Fix tests broken by prior refactoring.  Renamed 'api.py' to 'apisetup.py'
so it wouldn't be awkwardly shadowed by the 'api' method.

9 years ago4823: Refactoring. ReadOnly Collection is now CollectionReader, replacing old
Peter Amstutz [Fri, 20 Feb 2015 18:29:10 +0000 (13:29 -0500)]
4823: Refactoring.  ReadOnly Collection is now CollectionReader, replacing old
CollectionReader implementation (but maintains the same public API).

9 years agoFix typo on doc homepage.
Ward Vandewege [Thu, 19 Feb 2015 19:46:58 +0000 (14:46 -0500)]
Fix typo on doc homepage.

No issue #

9 years ago5277: Add test for mtime. Use ciso8601 module to parse arvados timestamps.
Peter Amstutz [Thu, 19 Feb 2015 15:20:34 +0000 (10:20 -0500)]
5277: Add test for mtime.  Use ciso8601 module to parse arvados timestamps.

9 years ago4823: Revert FUSE changes unrelated to ThreadSafeApiCache
Peter Amstutz [Thu, 19 Feb 2015 14:38:53 +0000 (09:38 -0500)]
4823: Revert FUSE changes unrelated to ThreadSafeApiCache

9 years agoMerge branch 'master' into 4823-python-sdk-writable-collection-api
Peter Amstutz [Thu, 19 Feb 2015 14:32:57 +0000 (09:32 -0500)]
Merge branch 'master' into 4823-python-sdk-writable-collection-api

9 years ago4823: Fix fuse tests for SafeApi -> ThreadSafeApiCache changes. Add a couple
Peter Amstutz [Thu, 19 Feb 2015 14:32:17 +0000 (09:32 -0500)]
4823: Fix fuse tests for SafeApi -> ThreadSafeApiCache changes.  Add a couple
of mtime assertions.

9 years agocloses #5197
Radhika Chippada [Wed, 18 Feb 2015 16:52:48 +0000 (11:52 -0500)]
closes #5197
Merge branch '5197-collection-name-owner-unique'

9 years ago4759: Update Node Manager to parse new Arvados API timestamps.
Brett Smith [Wed, 18 Feb 2015 15:31:00 +0000 (10:31 -0500)]
4759: Update Node Manager to parse new Arvados API timestamps.

Refs #4759.

9 years agocloses #5243, #5194 Merge branch '5194-quickfix-disambiguate-gettingstarted-sections'
Nancy Ouyang [Tue, 17 Feb 2015 23:16:24 +0000 (18:16 -0500)]
closes #5243, #5194 Merge branch '5194-quickfix-disambiguate-gettingstarted-sections'

9 years agoMerge branch '3408-production-datamanager' refs #3408
mishaz [Tue, 17 Feb 2015 23:07:14 +0000 (23:07 +0000)]
Merge branch '3408-production-datamanager' refs #3408

9 years ago5194: minor fixes
Nancy Ouyang [Tue, 17 Feb 2015 23:06:45 +0000 (18:06 -0500)]
5194: minor fixes

9 years agoMerge branch 'master' into 3408-production-datamanager refs #3408
mishaz [Tue, 17 Feb 2015 23:06:32 +0000 (23:06 +0000)]
Merge branch 'master' into 3408-production-datamanager refs #3408

9 years agoChanges to allow datamanager to run indefinitely:
mishaz [Tue, 17 Feb 2015 23:02:36 +0000 (23:02 +0000)]
Changes to allow datamanager to run indefinitely:

Logger's worker goroutine returns after final write.
minutes-between-runs flag specifies how many minutes to wait between runs (0 means don't loop)

9 years agoMerge branch '4138-node-manager-gce-wip'
Brett Smith [Tue, 17 Feb 2015 22:54:59 +0000 (17:54 -0500)]
Merge branch '4138-node-manager-gce-wip'

Closes #4138, #5222.

Thanks, Tim.

9 years ago4138: Prepare Node Manager GCE driver for production.
Brett Smith [Mon, 16 Feb 2015 16:06:41 +0000 (11:06 -0500)]
4138: Prepare Node Manager GCE driver for production.

* Set node metadata in more appropriate places.
* Bridge more differences between GCE and EC2, like the fact that
  sizes are listed for each location they're available, and GCE
  doesn't provide node boot times.
* Use more infrastructure from BaseComputeNodeDriver to reduce code
  duplication.
* Load as many objects as possible at initialization time, to reduce
  API overhead of creating nodes.

9 years ago4138: Revamp Node Manager driver proxying in BaseComputeNodeDriver.
Brett Smith [Fri, 13 Feb 2015 20:24:04 +0000 (15:24 -0500)]
4138: Revamp Node Manager driver proxying in BaseComputeNodeDriver.

Accessing attributes through a super() proxy does not invoke
__getattr__ on base classes, so the old implementation made it
impossible for subclasses to be agnostic about whether a method was
implemented in BaseComputeNodeDriver or the real libcloud driver.
This version makes that possible.  It's also a little nicer because
now the class will report these method names to dir(), hasattr(), etc.

9 years ago4138: Refactor out Node Manager DriverTestMixin.
Brett Smith [Thu, 12 Feb 2015 22:22:12 +0000 (17:22 -0500)]
4138: Refactor out Node Manager DriverTestMixin.

9 years ago4138: Fix noop Node Manager EC2 driver tests.
Brett Smith [Thu, 12 Feb 2015 20:53:16 +0000 (15:53 -0500)]
4138: Fix noop Node Manager EC2 driver tests.

The previous tests simply instantiated the driver, then checked that a
mock method was truthy (which it will always be).  This makes the test
work as intended.

9 years ago4138: Refactor common Node Manager driver initialization to base driver.
Brett Smith [Fri, 13 Feb 2015 21:00:30 +0000 (16:00 -0500)]
4138: Refactor common Node Manager driver initialization to base driver.

9 years ago4138: Simplify Node Manager GCE credential handling.
Brett Smith [Wed, 11 Feb 2015 20:12:37 +0000 (15:12 -0500)]
4138: Simplify Node Manager GCE credential handling.

Because libcloud's GCE driver accepts a key path as a constructor
argument, it's relatively straightforward to put all the constructor
arguments directly in the Node Manager configuration.  No need to
parse out JSON.

9 years ago4138: updated unit test
Tim Pierce [Fri, 23 Jan 2015 22:44:41 +0000 (17:44 -0500)]
4138: updated unit test

Corrected test_create_includes_ping_secret to account for delivering the
ping secret via metadata in GCE.

9 years ago4138: GCE fixes
Tim Pierce [Fri, 23 Jan 2015 22:24:54 +0000 (17:24 -0500)]
4138: GCE fixes

The 'network_id' parameter needs to be delivered as 'location' in GCE.

The ping_url parameter is now delivered in the node metadata as
'pingUrl'.

When creating a new GCE instance, 'name' is a required parameter and
must begin with a letter. The default name is the UUID of the
corresponding Arvados node, prepended with 'arv-'.

9 years ago4138: general GCE fixes
Tim Pierce [Wed, 21 Jan 2015 18:06:35 +0000 (13:06 -0500)]
4138: general GCE fixes

* JSON credential file
** GCE credentials are delivered as a JSON string (and the key is formatted as a multi-line RSA private key). Let the GCE config file specify a path to the JSON credential file for simplicity.
* Accept NodeSizes addressed by id or name
** In EC2, NodeSizes are identified by the 'id' field.  In GCE they are identified by the 'name' field.  Allow the Node Manager config module to accept either.

9 years ago4138: code review feedback
Tim Pierce [Mon, 24 Nov 2014 22:12:07 +0000 (17:12 -0500)]
4138: code review feedback

9 years ago4138: support for Google Cloud Engine.
Tim Pierce [Tue, 18 Nov 2014 18:49:10 +0000 (13:49 -0500)]
4138: support for Google Cloud Engine.

* Added:
** nodemanager/arvnodeman/computenode/drivers/gce.py
** nodemanager/doc/gce.example.cfg
** nodemanager/tests/test_computenode_driver_gce.py

Updated comment in nodemanager/arvnodeman/computenode/drivers/ec2.py.

9 years ago5194: Quickfix, disambiguated getting started and user guide sections, added 'next...
Nancy Ouyang [Tue, 17 Feb 2015 22:19:37 +0000 (17:19 -0500)]
5194: Quickfix, disambiguated getting started and user guide sections, added 'next steps' to getting started guide

9 years agoMerge branch '3408-production-datamanager' refs #3408
mishaz [Tue, 17 Feb 2015 21:37:07 +0000 (21:37 +0000)]
Merge branch '3408-production-datamanager' refs #3408

9 years agoMore changes in response to Peter's review.
mishaz [Tue, 17 Feb 2015 19:06:29 +0000 (19:06 +0000)]
More changes in response to Peter's review.

Started referencing keep servers by uuid.
Moved more logger init code into constructor call.
Switched logged timestamp label from time_* to *_at.

9 years ago4520: tested copying, fixed bad 'properties' field
Peter Amstutz [Tue, 17 Feb 2015 21:04:38 +0000 (21:04 +0000)]
4520: tested copying, fixed bad 'properties' field

9 years agorefs #5090 Merge branch '5090-doc-to-homepage'
Nancy Ouyang [Tue, 17 Feb 2015 20:53:04 +0000 (15:53 -0500)]
refs #5090 Merge branch '5090-doc-to-homepage'

9 years ago4520: --project-uuid now used for owner_uuid on all create() calls.
Peter Amstutz [Tue, 17 Feb 2015 20:16:25 +0000 (15:16 -0500)]
4520: --project-uuid now used for owner_uuid on all create() calls.

9 years ago3408: Merge branch 'master' into 3408-production-datamanager
Tom Clegg [Tue, 17 Feb 2015 18:46:32 +0000 (13:46 -0500)]
3408: Merge branch 'master' into 3408-production-datamanager

9 years ago4823: Record manifest_text response from API server. Give better names to
Peter Amstutz [Tue, 17 Feb 2015 18:36:05 +0000 (13:36 -0500)]
4823: Record manifest_text response from API server.  Give better names to
some tests.

9 years agorefs #4926 Merge branch '4926-rename-share.png'
Nancy Ouyang [Tue, 17 Feb 2015 18:29:00 +0000 (13:29 -0500)]
refs #4926 Merge branch '4926-rename-share.png'

9 years agoMerge branch 'master' into 4823-python-sdk-writable-collection-api
Peter Amstutz [Tue, 17 Feb 2015 17:16:14 +0000 (12:16 -0500)]
Merge branch 'master' into 4823-python-sdk-writable-collection-api

9 years ago4823: More tests and fixes for updating and merging from remote api record.
Peter Amstutz [Tue, 17 Feb 2015 17:15:30 +0000 (12:15 -0500)]
4823: More tests and fixes for updating and merging from remote api record.
Tests pass.

9 years agoMerge branch '4759-timestamp-precision-TC' closes #4759
Tom Clegg [Tue, 17 Feb 2015 17:07:50 +0000 (12:07 -0500)]
Merge branch '4759-timestamp-precision-TC' closes #4759

9 years agocloses #5220
Radhika Chippada [Tue, 17 Feb 2015 15:25:24 +0000 (10:25 -0500)]
closes #5220
Merge branch '5220-no-sharing-box-for-anon-user'

9 years ago4926: renamed share.png to sharing.png due to adblock on firefox
Nancy Ouyang [Tue, 17 Feb 2015 15:19:51 +0000 (10:19 -0500)]
4926: renamed share.png to sharing.png due to adblock on firefox

9 years ago5220: whitespace cleanup.
Ward Vandewege [Tue, 17 Feb 2015 15:13:16 +0000 (10:13 -0500)]
5220: whitespace cleanup.

9 years ago4759: Add functional tests for timestamp precision.
Tom Clegg [Tue, 17 Feb 2015 06:35:41 +0000 (01:35 -0500)]
4759: Add functional tests for timestamp precision.

9 years ago4759: Add test for inequality filters.
Tom Clegg [Tue, 17 Feb 2015 03:36:03 +0000 (22:36 -0500)]
4759: Add test for inequality filters.

9 years ago4759: Ignore args to as_json.
Tom Clegg [Tue, 17 Feb 2015 03:35:20 +0000 (22:35 -0500)]
4759: Ignore args to as_json.

9 years ago5220: do not show "Sharing and permissions" box when an anonymous user is viewing...
Radhika Chippada [Mon, 16 Feb 2015 23:30:03 +0000 (18:30 -0500)]
5220: do not show "Sharing and permissions" box when an anonymous user is viewing a shared collection.

9 years agocloses #5189
Radhika Chippada [Mon, 16 Feb 2015 22:46:05 +0000 (17:46 -0500)]
closes #5189
Merge branch '5189-manage-acct-shows-own-repos'

9 years ago5189: a little cleanup
Radhika Chippada [Mon, 16 Feb 2015 22:45:01 +0000 (17:45 -0500)]
5189: a little cleanup

9 years agoMerge branch 'master' into 5189-manage-acct-shows-own-repos
Radhika Chippada [Mon, 16 Feb 2015 22:28:40 +0000 (17:28 -0500)]
Merge branch 'master' into 5189-manage-acct-shows-own-repos

9 years ago4823: Add new tests for BufferBlock, BlockManager, saving, updating. Stylistic
Peter Amstutz [Mon, 16 Feb 2015 21:49:18 +0000 (16:49 -0500)]
4823: Add new tests for BufferBlock, BlockManager, saving, updating.  Stylistic
changes on variable naming.  Remove splitting code from splitfastq.

9 years ago5197: needed one more udpate
Radhika Chippada [Mon, 16 Feb 2015 20:58:28 +0000 (15:58 -0500)]
5197: needed one more udpate

9 years agoMerge branch '3410-replication-attrs' closes #3410 refs #5011
Tom Clegg [Mon, 16 Feb 2015 20:53:51 +0000 (15:53 -0500)]
Merge branch '3410-replication-attrs' closes #3410 refs #5011

9 years agoMerge branch 'master' into 5197-collection-name-owner-unique
Radhika Chippada [Mon, 16 Feb 2015 20:49:24 +0000 (15:49 -0500)]
Merge branch 'master' into 5197-collection-name-owner-unique

Conflicts:
services/api/db/structure.sql

9 years ago5197: down migration working
Radhika Chippada [Mon, 16 Feb 2015 20:41:05 +0000 (15:41 -0500)]
5197: down migration working

9 years agoMerge branch 'master' into 5197-collection-name-owner-unique
Radhika Chippada [Mon, 16 Feb 2015 20:31:55 +0000 (15:31 -0500)]
Merge branch 'master' into 5197-collection-name-owner-unique

9 years ago5197: updated migration script
Radhika Chippada [Mon, 16 Feb 2015 20:31:30 +0000 (15:31 -0500)]
5197: updated migration script

9 years agoFix typo in COPYING.
Ward Vandewege [Mon, 16 Feb 2015 20:02:48 +0000 (15:02 -0500)]
Fix typo in COPYING.

No issue #

9 years ago5197: update the collection_owner_uuid_name_unique index to use expires_at is null...
Radhika Chippada [Mon, 16 Feb 2015 19:49:27 +0000 (14:49 -0500)]
5197: update the collection_owner_uuid_name_unique index to use expires_at is null where clause.

9 years ago3410: Merge branch 'master' into 3410-replication-attrs
Tom Clegg [Mon, 16 Feb 2015 19:13:00 +0000 (14:13 -0500)]
3410: Merge branch 'master' into 3410-replication-attrs

Conflicts:
services/api/test/fixtures/collections.yml
services/api/test/unit/collection_test.rb

9 years ago5197: write a failing test
Radhika Chippada [Mon, 16 Feb 2015 19:07:58 +0000 (14:07 -0500)]
5197: write a failing test

9 years ago4759: Use ISO 8601 timestamps with fractional seconds in API responses.
Tom Clegg [Mon, 16 Feb 2015 19:00:09 +0000 (14:00 -0500)]
4759: Use ISO 8601 timestamps with fractional seconds in API responses.

9 years agorefs #5096
Radhika Chippada [Mon, 16 Feb 2015 17:50:21 +0000 (12:50 -0500)]
refs #5096
Merge branch '5096-wb-collection-name-or-desc-update'

9 years agoMerge branch 'master' into 5096-wb-collection-name-or-desc-update
Radhika Chippada [Mon, 16 Feb 2015 17:46:00 +0000 (12:46 -0500)]
Merge branch 'master' into 5096-wb-collection-name-or-desc-update

Conflicts:
apps/workbench/test/controllers/collections_controller_test.rb

9 years ago5096: more efficient update method override.
Radhika Chippada [Mon, 16 Feb 2015 17:42:17 +0000 (12:42 -0500)]
5096: more efficient update method override.

9 years agoMerge branch 'master' into 5189-manage-acct-shows-own-repos
Radhika Chippada [Mon, 16 Feb 2015 16:33:55 +0000 (11:33 -0500)]
Merge branch 'master' into 5189-manage-acct-shows-own-repos

9 years agoMerge branch '5095-fuse-ls-takes-forever' closes #5095
Peter Amstutz [Mon, 16 Feb 2015 16:33:34 +0000 (11:33 -0500)]
Merge branch '5095-fuse-ls-takes-forever' closes #5095

9 years ago4823: Notes on how the mocking works with requests.Session
Peter Amstutz [Mon, 16 Feb 2015 16:32:47 +0000 (11:32 -0500)]
4823: Notes on how the mocking works with requests.Session

9 years ago5189: include owned repositories in the list of repositories returned in manage_account.
Radhika Chippada [Mon, 16 Feb 2015 16:29:54 +0000 (11:29 -0500)]
5189: include owned repositories in the list of repositories returned in manage_account.

9 years ago5095: _mtime on collection defaults to 0 instead of time.time().
Peter Amstutz [Mon, 16 Feb 2015 16:01:58 +0000 (11:01 -0500)]
5095: _mtime on collection defaults to 0 instead of time.time().

9 years agoMerge branch 'master' into 4823-python-sdk-writable-collection-api
Peter Amstutz [Mon, 16 Feb 2015 15:59:23 +0000 (10:59 -0500)]
Merge branch 'master' into 4823-python-sdk-writable-collection-api

Conflicts:
sdk/python/tests/arvados_testutil.py
services/fuse/arvados_fuse/__init__.py

9 years ago5095: Set _mtime when the collection object is updated.
Peter Amstutz [Mon, 16 Feb 2015 15:11:42 +0000 (10:11 -0500)]
5095: Set _mtime when the collection object is updated.

9 years agocloses #5186
Radhika Chippada [Mon, 16 Feb 2015 13:56:02 +0000 (08:56 -0500)]
closes #5186
Merge branch '5186-collection-with-empty-properties'

9 years ago5186: a few more test assertions.
Radhika Chippada [Mon, 16 Feb 2015 13:54:43 +0000 (08:54 -0500)]
5186: a few more test assertions.

9 years ago3410: Update comments.
Tom Clegg [Mon, 16 Feb 2015 08:12:43 +0000 (03:12 -0500)]
3410: Update comments.

9 years ago3410: Fix search index so [old versions of] tests pass after down-migration.
Tom Clegg [Mon, 16 Feb 2015 08:12:32 +0000 (03:12 -0500)]
3410: Fix search index so [old versions of] tests pass after down-migration.

9 years ago3410: Fix overly sensitive test.
Tom Clegg [Mon, 16 Feb 2015 08:11:23 +0000 (03:11 -0500)]
3410: Fix overly sensitive test.

9 years ago5186: collection properties attribute is a hash
Radhika Chippada [Sun, 15 Feb 2015 20:48:46 +0000 (15:48 -0500)]
5186: collection properties attribute is a hash

9 years ago3410: Update comments.
Tom Clegg [Sun, 15 Feb 2015 01:20:37 +0000 (20:20 -0500)]
3410: Update comments.

9 years ago3410: Rename maybe_clear_redundancy_confirmed to maybe_clear_replication_confirmed.
Tom Clegg [Sun, 15 Feb 2015 00:56:19 +0000 (19:56 -0500)]
3410: Rename maybe_clear_redundancy_confirmed to maybe_clear_replication_confirmed.

9 years ago5096: if only collection name or description is being updated, do not include manifes...
Radhika Chippada [Sat, 14 Feb 2015 23:46:14 +0000 (18:46 -0500)]
5096: if only collection name or description is being updated, do not include manifest_text in the request.

9 years agoEnsure result order is predictable, even if client-provided orders do not specify...
Tom Clegg [Sat, 14 Feb 2015 21:54:00 +0000 (16:54 -0500)]
Ensure result order is predictable, even if client-provided orders do not specify a complete ordering.

Fixes intermittent test failures. Example (from
https://ci.curoverse.com/job/arvados-api-server/1305/console):

GroupsTest#test_get_all_pages_of_group-owned_objects [/data/1/jenkins/workspace/arvados-api-server/services/api/test/integration/groups_test.rb:31]:
Received 'zzzzz-4zz18-fy296fx3hot09f7' again on page 3.
<nil> expected but was
<true>.

No issue #