view Agendas/trunk/src/Agendas.Web.Tests/AutorizationsTests.cs @ 285:c8f378272407

#123: Patrocinadores de las vans.
author juanjose.montesdeocaarbos
date Sat, 31 Dec 2011 14:45:55 -0300
parents 1e889a2e45c5
children 1408ac17cb64
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Web.Mvc;
using AltNetHispano.Agendas.Domain;
using AltNetHispano.Agendas.Web.Controllers;
using NUnit.Framework;

namespace Agendas.Web.Tests
{
	[TestFixture]
	public class Autorizaciones
	{
		private IEnumerable<MethodInfo> _methods;

		[TestFixtureSetUp]
		public void ReadMethods()
		{
			var types = typeof (HomeController).Assembly.GetTypes().ToList();
			var controllers = types.Where(t => typeof (Controller).IsAssignableFrom(t)).ToList();

			var methods = new List<MethodInfo>();
			foreach (var controller in controllers)
			{
				var temp =
					controller.GetMethods(BindingFlags.Public | BindingFlags.Instance | ~BindingFlags.FlattenHierarchy).Where(
						m => !m.IsPrivate && typeof (ActionResult).IsAssignableFrom(m.ReturnType));
				
				methods.AddRange(temp);
			}

			_methods = methods;
		}

		[Test]
		public void Acciones_publicas()
		{
			var acciones = new[]
			               	{
			               		"HomeController.Index", "HomeController.About", "EventoController.Index", "AccountController.LogOn",
			               		"AccountController.LogOff", "AccountController.TwitterLogOn", "HistoricoController.Index",
								"PersonaController.Index", "ErrorController.NoAutorizado", "PersonaController.Ver",
								"PatrocinadorController.Index", "PatrocinadorController.GetLogo", "PatrocinadorApiController.Nuevo"
			               	};

			#region Asserts

			bool fail = false;
			foreach (var method in _methods)
			{
				var action = method.DeclaringType.Name + "." + method.Name;
				if (acciones.Contains(action))
				{
					if (method.GetCustomAttributes(typeof (CustomAuthorizeAttribute), false).Any())
					{
						fail = true;
						Console.WriteLine(action + " debe ser público");
					}
				}
				else
				{
					if (!method.GetCustomAttributes(typeof (CustomAuthorizeAttribute), false).Any())
					{
						fail = true;
						Console.WriteLine(action + " debe ser seguro");
					}
				}
			}

			Assert.IsFalse(fail);

			#endregion
		}

		[Test]
		public void Acciones_privadas()
		{
			var acciones = new[]
			               	{
			               		"PerfilController.Index", "PerfilController.AddGoogleAccount", "PerfilController.AddTwitterAccount",
			               		"PerfilController.Remove", "PerfilController.Modificar"
			               	};

			VerficarAccionesSeguras(acciones, Roles.Usuario, "debe ser privado");
		}

		[Test]
		public void Acciones_del_administrador()
		{
			var acciones = new[]
			               	{
			               		"EventoController.Agendar", "EventoController.Confirmar", "EventoController.Nuevo",
			               		"EventoController.Publicar", "EventoController.Modificar", "EventoController.Proponer",
			               		"EventoController.Cancelar", "EventoController.Descartar", "EventoController.ReAgendar",
			               		"EventoController.ReProponer", "PersonaController.Nueva", "PersonaController.Modificar",
								"PersonaController.Quitar", "PersonaApiController.Nueva", "PatrocinadorController.Nuevo",
								"PatrocinadorController.Modificar", "PatrocinadorController.Eliminar"
			               	};

			VerficarAccionesSeguras(acciones, Roles.Administrador, "debe ser de uso exclusivo de los administradores");
		}

		private void VerficarAccionesSeguras(IEnumerable<string> acciones, string rol, string mensaje)
		{
			bool fail = false;
			foreach (var method in _methods)
			{
				var action = method.DeclaringType.Name + "." + method.Name;
				if (acciones.Contains(action))
				{
					if (method.GetCustomAttributes(typeof (CustomAuthorizeAttribute), false).Any())
					{
						var found =
							method.GetCustomAttributesData().Any(d => d.NamedArguments.Any(a => rol.Equals(a.TypedValue.Value)));

						if (!found)
						{
							fail = true;
							Console.WriteLine(action + " " + mensaje);
						}
					}
					else
					{
						fail = true;
						Console.WriteLine(action + " debe ser seguro");
					}
				}
				else if (method.GetCustomAttributes(typeof (CustomAuthorizeAttribute), false).Any())
				{
					var found =
						method.GetCustomAttributesData().Any(d => d.NamedArguments.Any(a => rol.Equals(a.TypedValue.Value)));

					if (found)
					{
						fail = true;
						Console.WriteLine(action + " no " + mensaje);
					}
				}
			}
			Assert.IsFalse(fail);
		}
	}
}