Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tables Client commit #11

Closed
wants to merge 30 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b4a8ff9
Fixing several test-related issues
jcookems Feb 13, 2012
a5e94e3
Avoiding a warning on build. Fixes #177
lodejard Feb 13, 2012
6a25ef7
Initial implementation of table service
Dec 7, 2011
cfb7c93
Integration tests
Dec 8, 2011
bbcee3e
Cosmetic changes
Jan 9, 2012
9432fac
Implement table creation/deletion/querying
Jan 10, 2012
f481f38
Add support for "insertEntity"
Jan 11, 2012
28a3cec
Whitespaces
Jan 11, 2012
b3fc550
Add support for "updateEntity"
Jan 11, 2012
6696e2c
Add support for "DeleteEntity"
Jan 11, 2012
9cede50
Add support for "mergeEntity"
Jan 11, 2012
b9a00d4
Add support for "insertOrReplaceEntity"
Jan 11, 2012
a4f49b0
Add support for "insertOrMergeEntity"
Jan 11, 2012
bf53b9c
Add support for "getEntity" and "queryEntities"
Jan 11, 2012
a72bc2a
Rename a few classes, fix support for query continuation
Jan 12, 2012
711e23d
Fix bug with server sometimes sending back shorter ISO 8601 dates
Jan 12, 2012
06146b7
Adding test for query entities continuation
Jan 12, 2012
8fdbcf7
Adding a couple more unit test for query entities
Jan 12, 2012
3f5f5d7
Initial (not quite working yet) support for batch operations
Jan 13, 2012
802e9b0
Add full support for "batch" operation on tables
Jan 14, 2012
34de8fe
Additional test for "batch" operation
Jan 14, 2012
18c8255
Simple code refactorings
Jan 14, 2012
04cc644
Support for all batch operations
Jan 14, 2012
3ed65cc
Fixed string-comparison bug in service runtime.
Dec 9, 2011
87ebda2
Commenting out an optional diagnostic line
lodejard Feb 13, 2012
eaf313b
Merge pull request #6 from loudej/string-comparison
loudej Feb 14, 2012
73c80b3
Merge pull request #5 from loudej/pom-warning
loudej Feb 14, 2012
8d2258b
Fixing a simple typo: blob to queue
jeffwilcox Feb 15, 2012
2c2ca7e
Merge pull request #7 from loudej/tables
joostdenijs Feb 21, 2012
3a7d97c
Table Client commit
Feb 22, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Whitespaces
  • Loading branch information
Renaud Paquay authored and lodejard committed Feb 13, 2012
commit 28a3cecdd169da24a88f2d4738ed0f38ae86cd75
Original file line number Diff line number Diff line change
@@ -284,17 +284,23 @@ public void insertEntityWorks() throws Exception {
// Assert
assertNotNull(result);
assertNotNull(result.getEntity());

assertEquals("001", result.getEntity().getPartitionKey());
assertEquals("002", result.getEntity().getRowKey());
assertNotNull(result.getEntity().getTimestamp());

assertNotNull(result.getEntity().getProperty("test"));
assertEquals(true, result.getEntity().getProperty("test").getValue());

assertNotNull(result.getEntity().getProperty("test2"));
assertEquals("value", result.getEntity().getProperty("test2").getValue());

assertNotNull(result.getEntity().getProperty("test3"));
assertEquals(3, result.getEntity().getProperty("test3").getValue());

assertNotNull(result.getEntity().getProperty("test4"));
assertEquals(12345678901L, result.getEntity().getProperty("test4").getValue());

assertNotNull(result.getEntity().getProperty("test5"));
assertTrue(result.getEntity().getProperty("test5").getValue() instanceof Date);
}