Ejemplo n.º 1
0
        public void DenyUser_WhenFileDoesntStartWithUser()
        {
            SimpleRoleProvider provider = new SimpleRoleProvider();
            string             path     = "C:/admin_test.txt";
            string             role     = "user";
            bool expected = false;

            bool actual = provider.HasAccess(path, role);

            Assert.Equal(expected, actual);
        }
Ejemplo n.º 2
0
        public void AllowAdmin()
        {
            SimpleRoleProvider provider = new SimpleRoleProvider();
            string             path     = "C:/user_test.txt";
            string             role     = "admin";
            bool expected = true;

            bool actual = provider.HasAccess(path, role);

            Assert.Equal(expected, actual);
        }
Ejemplo n.º 3
0
        public void AllowUser_WhenFileStartsWithUser()
        {
            SimpleRoleProvider provider = new SimpleRoleProvider();
            string             path     = "C:/user_test.txt";
            string             role     = "user";
            bool expected = true;

            bool actual = provider.HasAccess(path, role);

            Assert.Equal(expected, actual);
        }