public void CustomUriLiteralPrefix_Remove_InvalidLiteralNameThrows(string literalPrefix) { Action addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(literalPrefix); addCustomUriLiteralPrefix.Throws <ArgumentException>(Strings.UriParserHelper_InvalidPrefixLiteral(literalPrefix)); }
public void CustomUriLiteralPrefix_CannotRemoveWithEmptyLiteralName() { // Rempve empty literal prefix name Action removeCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(string.Empty); removeCustomUriLiteralPrefix.ShouldThrow <ArgumentNullException>(); }
public void CustomUriLiteralPrefix_CannotRemoveWithNullLiteralName() { // Remove 'null' literal prefix name Action removeCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(null); removeCustomUriLiteralPrefix.ShouldThrow <ArgumentNullException>(); }
public void CustomUriLiteralPrefix_CannotRemoveWithEmptyLiteralName() { // Rempve empty literal prefix name Action removeCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(string.Empty); Assert.Throws <ArgumentNullException>("literalPrefix", removeCustomUriLiteralPrefix); }
public void CustomUriLiteralPrefix_CannotRemoveWithNullLiteralName() { // Remove 'null' literal prefix name Action removeCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(null); Assert.Throws <ArgumentNullException>("literalPrefix", removeCustomUriLiteralPrefix); }
public void CustomUriLiteralPrefix_CanRemoveExistingLiteral() { const string LITERAL_PREFIX = "myCustomUriLiteralPrefix"; IEdmTypeReference booleanTypeReference = EdmCoreModel.Instance.GetBoolean(false); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(LITERAL_PREFIX, booleanTypeReference); CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(LITERAL_PREFIX).Should().BeTrue(); }
public void CustomUriLiteralPrefix_Add_ValidLiteralNamePassValidation(string literalPrefix) { try { CustomUriLiteralPrefixes.AddCustomLiteralPrefix(literalPrefix, EdmCoreModel.Instance.GetBoolean(false)); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(literalPrefix); } }
public void CustomUriLiteralPrefix_Remove_ValidLiteralNameValidation(string literalPrefix) { try { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(literalPrefix); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(literalPrefix); } }
public void CustomUriLiteralPrefix_CanAddLiteralPrefixNameOfBuiltInLiteral() { const string EXISITING_BUILTIN_LITERAL_NAME = "geometry"; try { IEdmTypeReference first_booleanTypeReference = EdmCoreModel.Instance.GetBoolean(false); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(EXISITING_BUILTIN_LITERAL_NAME, first_booleanTypeReference); CustomUriLiteralPrefixes.GetEdmTypeByCustomLiteralPrefix(EXISITING_BUILTIN_LITERAL_NAME).IsEquivalentTo(first_booleanTypeReference).Should().BeTrue(); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(EXISITING_BUILTIN_LITERAL_NAME).Should().BeTrue(); } }
public void CustomUriLiteralPrefix_CannotParseTypeWithWrongLiteralPrefix() { try { IEdmTypeReference booleanTypeReference = EdmCoreModel.Instance.GetBoolean(false); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(CustomUriLiteralParserUnitTests.BOOLEAN_LITERAL_PREFIX, booleanTypeReference); var fullUri = new Uri("http://www.odata.com/OData/People" + string.Format("?$filter=Name eq {0}'{1}'", CustomUriLiteralParserUnitTests.BOOLEAN_LITERAL_PREFIX, CustomUriLiteralParserUnitTests.CUSTOM_PARSER_STRING_VALID_VALUE)); ODataUriParser parser = new ODataUriParser(HardCodedTestModel.TestModel, new Uri("http://www.odata.com/OData/"), fullUri); Action parsingFilterAction = () => parser.ParseFilter(); parsingFilterAction.ShouldThrow <ODataException>(); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(CustomUriLiteralParserUnitTests.BOOLEAN_LITERAL_PREFIX); } }
public void CustomUriLiteralPrefix_CannotAddExistingPrefixNameWithExistingEdmType() { const string LITERAL_PREFIX = "myCustomUriLiteralPrefix"; try { IEdmTypeReference booleanTypeReference = EdmCoreModel.Instance.GetBoolean(false); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(LITERAL_PREFIX, booleanTypeReference); // Should throw exception Action addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.AddCustomLiteralPrefix(LITERAL_PREFIX, booleanTypeReference); addCustomUriLiteralPrefix.Throws <ODataException>(Strings.CustomUriTypePrefixLiterals_AddCustomUriTypePrefixLiteralAlreadyExists(LITERAL_PREFIX)); } finally { Assert.True(CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(LITERAL_PREFIX)); } }
public void CustomUriLiteralPrefix_CannotParseWithCustomLiteralPrefix_IfBuiltInParserDontRecognizeCustomLiteral() { const string STRING_LITERAL_PREFIX = "myCustomStringLiteralPrefix"; try { IEdmTypeReference stringTypeReference = EdmCoreModel.Instance.GetString(true); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(STRING_LITERAL_PREFIX, stringTypeReference); var fullUri = new Uri("http://www.odata.com/OData/People" + string.Format("?$filter=Name eq {0}'{1}'", STRING_LITERAL_PREFIX, CustomUriLiteralParserUnitTests.CUSTOM_PARSER_STRING_VALID_VALUE)); ODataUriParser parser = new ODataUriParser(HardCodedTestModel.TestModel, new Uri("http://www.odata.com/OData/"), fullUri); Action parsingFilter = () => parser.ParseFilter(); parsingFilter.ShouldThrow <ODataException>(); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(STRING_LITERAL_PREFIX); } }
public void CustomUriLiteralPrefix_CanAddDifferentPrefixNameWithExistingEdmTypeWith() { const string FIRST_LITERAL_PREFIX = "myFirstCustomLiteralPrefix"; const string SECOND_LITERAL_PREFIX = "mySecondCustomLiteralPrefix"; try { IEdmTypeReference booleanTypeReference = EdmCoreModel.Instance.GetBoolean(false); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(FIRST_LITERAL_PREFIX, booleanTypeReference); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(SECOND_LITERAL_PREFIX, booleanTypeReference); CustomUriLiteralPrefixes.GetEdmTypeByCustomLiteralPrefix(FIRST_LITERAL_PREFIX).IsEquivalentTo(booleanTypeReference).Should().BeTrue(); CustomUriLiteralPrefixes.GetEdmTypeByCustomLiteralPrefix(SECOND_LITERAL_PREFIX).IsEquivalentTo(booleanTypeReference).Should().BeTrue(); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(FIRST_LITERAL_PREFIX).Should().BeTrue(); CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(SECOND_LITERAL_PREFIX).Should().BeTrue(); } }
public void CustomUriLiteralPrefix_CannotParseTypeWithWrongLiteralPrefix() { // Ensure the prefix under test is registered. Handle the exception gracefully if // the prefix is already registered. IEdmTypeReference booleanTypeReference = EdmCoreModel.Instance.GetBoolean(false); //const string BOOLEAN_LITERAL_PREFIX = "booleanLiteralPrefix"; try { CustomUriLiteralPrefixes.AddCustomLiteralPrefix( CustomUriLiteralParserUnitTests.BOOLEAN_LITERAL_PREFIX, booleanTypeReference); } catch (ODataException e) { if (!String.Equals(e.Message, Strings.CustomUriTypePrefixLiterals_AddCustomUriTypePrefixLiteralAlreadyExists( CustomUriLiteralParserUnitTests.BOOLEAN_LITERAL_PREFIX), StringComparison.Ordinal)) { // unexpected exception, re-throw. throw; } // Swallow the exception since it is due to trying to register a prefix that is already added. } try { var fullUri = new Uri("http://www.odata.com/OData/People" + string.Format("?$filter=Name eq {0}'{1}'", CustomUriLiteralParserUnitTests.BOOLEAN_LITERAL_PREFIX, CustomUriLiteralParserUnitTests.CUSTOM_PARSER_STRING_VALID_VALUE)); ODataUriParser parser = new ODataUriParser(HardCodedTestModel.TestModel, new Uri("http://www.odata.com/OData/"), fullUri); Action parsingFilterAction = () => parser.ParseFilter(); Assert.Throws <ODataException>(parsingFilterAction); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(CustomUriLiteralParserUnitTests.BOOLEAN_LITERAL_PREFIX); } }
public void CustomUriLiteralPrefix_CanAddDifferentPrefixNameWithDifferentEdmTypeWith() { const string FIRST_LITERAL_PREFIX = "myFirstCustomLiteralPrefix"; const string SECOND_LITERAL_PREFIX = "mySecondCustomLiteralPrefix"; try { IEdmTypeReference first_booleanTypeReference = EdmCoreModel.Instance.GetBoolean(false); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(FIRST_LITERAL_PREFIX, first_booleanTypeReference); IEdmTypeReference second_stringTypeReference = EdmCoreModel.Instance.GetString(false); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(SECOND_LITERAL_PREFIX, second_stringTypeReference); Assert.True(CustomUriLiteralPrefixes.GetEdmTypeByCustomLiteralPrefix(FIRST_LITERAL_PREFIX).IsEquivalentTo(first_booleanTypeReference)); Assert.True(CustomUriLiteralPrefixes.GetEdmTypeByCustomLiteralPrefix(SECOND_LITERAL_PREFIX).IsEquivalentTo(second_stringTypeReference)); } finally { Assert.True(CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(FIRST_LITERAL_PREFIX)); Assert.True(CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(SECOND_LITERAL_PREFIX)); } }
public void CustomUriLiteralPrefix_Remove_LiteralNameValidation() { const string INVALID_LITERAL_PREFIX_NUMBER = "myCustomUriLiteralPrefix56"; const string INVALID_LITERAL_PREFIX_PUNCTUATION = "myCustomUriLiteralPrefix?"; const string INVALID_LITERAL_PREFIX_WHITESPACE = "myCustomUriLiteralPrefix "; const string INVALID_LITERAL_PREFIX_SIGN = "myCustomUriLiteralPrefix*"; Action addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(INVALID_LITERAL_PREFIX_NUMBER); addCustomUriLiteralPrefix.ShouldThrow <ArgumentException>(); addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(INVALID_LITERAL_PREFIX_PUNCTUATION); addCustomUriLiteralPrefix.ShouldThrow <ArgumentException>(); addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(INVALID_LITERAL_PREFIX_WHITESPACE); addCustomUriLiteralPrefix.ShouldThrow <ArgumentException>(); addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(INVALID_LITERAL_PREFIX_SIGN); addCustomUriLiteralPrefix.ShouldThrow <ArgumentException>(); const string VALID_LITERAL_PREFIX_LETTERS = "myCustomUriLiteralPrefix"; const string VALID_LITERAL_PREFIX_POINT = "myCustom.LiteralPrefix"; try { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(VALID_LITERAL_PREFIX_LETTERS); CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(VALID_LITERAL_PREFIX_POINT); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(VALID_LITERAL_PREFIX_LETTERS); CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(VALID_LITERAL_PREFIX_POINT); } }
public void CustomUriLiteralPrefix_Add_LiteralNameValidation() { const string INVALID_LITERAL_PREFIX_NUMBER = "myCustomUriLiteralPrefix56"; const string INVALID_LITERAL_PREFIX_PUNCTUATION = "myCustomUriLiteralPrefix?"; const string INVALID_LITERAL_PREFIX_WHITESPACE = "myCustomUriLiteralPrefix "; const string INVALID_LITERAL_PREFIX_SIGN = "myCustomUriLiteralPrefix*"; Action addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.AddCustomLiteralPrefix(INVALID_LITERAL_PREFIX_NUMBER, EdmCoreModel.Instance.GetBoolean(false)); addCustomUriLiteralPrefix.ShouldThrow <ArgumentException>(); addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.AddCustomLiteralPrefix(INVALID_LITERAL_PREFIX_PUNCTUATION, EdmCoreModel.Instance.GetBoolean(false)); addCustomUriLiteralPrefix.ShouldThrow <ArgumentException>(); addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.AddCustomLiteralPrefix(INVALID_LITERAL_PREFIX_WHITESPACE, EdmCoreModel.Instance.GetBoolean(false)); addCustomUriLiteralPrefix.ShouldThrow <ArgumentException>(); addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.AddCustomLiteralPrefix(INVALID_LITERAL_PREFIX_SIGN, EdmCoreModel.Instance.GetBoolean(false)); addCustomUriLiteralPrefix.ShouldThrow <ArgumentException>(); const string VALID_LITERAL_PREFIX_LETTERS = "myCustomUriLiteralPrefix"; const string VALID_LITERAL_PREFIX_POINT = "myCustom.LiteralPrefix"; try { CustomUriLiteralPrefixes.AddCustomLiteralPrefix(VALID_LITERAL_PREFIX_LETTERS, EdmCoreModel.Instance.GetBoolean(false)); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(VALID_LITERAL_PREFIX_POINT, EdmCoreModel.Instance.GetBoolean(false)); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(VALID_LITERAL_PREFIX_LETTERS); CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(VALID_LITERAL_PREFIX_POINT); } }
public void CustomUriLiteralPrefix_CannotAddExistingPrefixNameWithDifferentEdmType() { const string LITERAL_PREFIX = "myCustomUriLiteralPrefix"; try { IEdmTypeReference booleanTypeReference = EdmCoreModel.Instance.GetBoolean(false); CustomUriLiteralPrefixes.AddCustomLiteralPrefix(LITERAL_PREFIX, booleanTypeReference); IEdmTypeReference intTypeReference = EdmCoreModel.Instance.GetInt32(false); // Should throw exception Action addCustomUriLiteralPrefix = () => CustomUriLiteralPrefixes.AddCustomLiteralPrefix(LITERAL_PREFIX, intTypeReference); addCustomUriLiteralPrefix.ShouldThrow <ODataException>(). WithMessage(Strings.CustomUriTypePrefixLiterals_AddCustomUriTypePrefixLiteralAlreadyExists(LITERAL_PREFIX)); } finally { CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(LITERAL_PREFIX).Should().BeTrue(); } }
public void CustomUriLiteralPrefix_CannotRemoveNotExistingLiteral() { const string LITERAL_PREFIX = "myCustomUriLiteralPrefix"; Assert.False(CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(LITERAL_PREFIX)); }
public void CustomUriLiteralPrefix_CannotRemoveNotExistingLiteral() { const string LITERAL_PREFIX = "myCustomUriLiteralPrefix"; CustomUriLiteralPrefixes.RemoveCustomLiteralPrefix(LITERAL_PREFIX).Should().BeFalse(); }