Exemplo n.º 1
0
        public override int GetResourceId(IDictionary <string, object> actionArguments)
        {
            Contract.Assert(this.ArgumentName != null, "The argument name must not be null.");
            if (!actionArguments.ContainsKey(this.ArgumentName))
            {
                var message = "The argument named [{0}] was not found in the given action arguments.  "
                              + "If you did not specify an argument name then the default argument name [{1}] is assumed.  Either specify an argument name or refactor the argument name to the default.";
                throw new NotSupportedException(String.Format(message, this.ArgumentName, ResourceAuthorizeAttribute.DEFAULT_ID_ARGUMENT_NAME));
            }
            var actionArgumentValue     = actionArguments[this.ArgumentName];
            var actionArgumentValueType = actionArgumentValue.GetType();

            if (actionArgumentValueType != typeof(string))
            {
                throw new NotSupportedException(String.Format("The action argument must be a string (DocumentKey).  It was a [{0}].", actionArgumentValueType));
            }

            Contract.Assert(actionArgumentValueType == typeof(string), "The action argument value type should be a string.");
            DocumentKey documentKey = null;
            var         actionArgumentStringValue = (string)actionArgumentValue;
            var         isDocumentKey             = DocumentKey.TryParse(actionArgumentStringValue, out documentKey);

            if (!isDocumentKey)
            {
                throw new NotSupportedException(String.Format("The action argument string value [{0}] is not a valid document key.", actionArgumentStringValue));
            }
            if (documentKey.KeyType != DocumentKeyType.Int)
            {
                throw new NotSupportedException(String.Format("The document key - key type of [{0}] is not supported.", documentKey.KeyType));
            }
            return((int)documentKey.Value);
        }
Exemplo n.º 2
0
        public void TestTryParse_IsNotValidDocumentKey()
        {
            var documentKey         = new DocumentKey(Guid.NewGuid(), 1);
            var documentKeyAsString = documentKey.ToString();

            DocumentKey testKey = null;
            var         result  = DocumentKey.TryParse("abc", out testKey);

            Assert.IsFalse(result);
            Assert.IsNull(testKey);
        }
Exemplo n.º 3
0
        public void TestTryParse_IsValidDocumentKey()
        {
            var documentKey         = new DocumentKey(Guid.NewGuid(), 1);
            var documentKeyAsString = documentKey.ToString();

            DocumentKey testKey;
            var         result = DocumentKey.TryParse(documentKeyAsString, out testKey);

            Assert.IsTrue(result);
            Assert.IsNotNull(testKey);
            Assert.AreEqual(documentKey, testKey);
        }