func TestVerifyLogin(t *testing.T) {
	var valid bool
	var m *booking_model.Model
	var err error
	database := booking_database_sqlite.New("/tmp/booking_test.db", true)
	modelStorage := booking_model_storage.New(database)
	modelService := New(modelStorage, booking_tokengenerator.New())

	m, err = modelService.Create(&booking_model.Model{})
	if err = AssertThat(err, NilValue()); err != nil {
		t.Fatal(err)
	}
	token := m.Token

	valid, err = modelService.VerifyLogin(&booking_model.Model{Token: token})
	if err = AssertThat(err, NilValue()); err != nil {
		t.Fatal(err)
	}
	if err = AssertThat(valid, Is(true)); err != nil {
		t.Fatal(err)
	}

	valid, err = modelService.VerifyLogin(&booking_model.Model{Token: "wrong"})
	if err = AssertThat(err, NilValue()); err != nil {
		t.Fatal(err)
	}
	if err = AssertThat(valid, Is(false)); err != nil {
		t.Fatal(err)
	}
}
func createHandler(database booking_database.Database, userService booking_user_service.Service) http.Handler {
	tokengenerator := booking_tokengenerator.New()
	modelService := booking_model_service.New(booking_model_storage.New(database), tokengenerator)
	dateStorage := booking_date_storage.New(database)
	authenticationService := booking_authentication_service.New(userService, modelService)
	shootingStorage := booking_shooting_storage.New(database)
	eventBus := eventbus.New()
	shootingValidator := booking_shooting_validator.New()
	shootingService := booking_shooting_service.New(shootingStorage, shootingValidator.ValidateShooting)
	authorizationService := booking_authorization_service.New()
	authenticationConverter := booking_authentication_converter.New()
	shootingBookService := booking_shooting_service_book.New(shootingStorage, eventBus, dateStorage)
	shootingRefuseService := booking_shooting_service_refuse.New(shootingStorage, eventBus)
	configService := booking_config_service.New(booking_config_storage.New(database))
	protocolBuilderProvider := booking_protocol_builder.New(authenticationConverter.HttpRequestToAuthentication, userService.FindUserByAuthentication, modelService.FindModelByAuthentication)
	protocoller := booking_protocol_protocoller.New(protocolBuilderProvider.NewBuilder, eventBus.Publish)
	dateUserService := booking_date_user_service.New(booking_date_user_storage.New(database))
	shootingUserService := booking_shooting_user_service.New(booking_shooting_user_storage.New(database))
	dateService := booking_date_service.New(dateStorage, shootingService.Get, shootingUserService.GetUserIdsForShooting, dateUserService.GetUserIdsForDate)
	calendarWriter := booking_calendar_writer.New(dateService.List, shootingService.GetShootingByDateId, configService.GetStringDefault, userService.ListUserOfDate)
	modelToVCard := booking_model_vcard.New()

	handlerConfiguration := New("/tmp", dateService, modelService, shootingService, userService, authenticationService, authorizationService, authenticationConverter, shootingBookService, shootingRefuseService, configService, calendarWriter, protocoller, dateUserService, shootingUserService, modelToVCard)
	return handlerConfiguration.GetHandler()
}
func createHandler(db booking_database.Database, userService booking_user_service.Service) http.Handler {
	tokengenerator := booking_tokengenerator.New()
	modelService := booking_model_service.New(booking_model_storage.New(db), tokengenerator)
	dateService := booking_date_service.New(booking_date_storage.New(db))
	authenticationService := booking_authentication_service.New(userService, modelService)
	shootingService := booking_shooting_service.New(booking_shooting_storage.New(db), eventbus.New())
	authorizationService := booking_authorization_service.New()
	authenticationConverter := booking_authentication_converter.New()
	handlerConfiguration := New("/tmp", dateService, modelService, shootingService, userService, authenticationService, authorizationService, authenticationConverter)
	return handlerConfiguration.GetHandler()
}
Exemple #4
0
func createServer() (*http.Server, error) {
	port := model.Port(*portPtr)
	documentRoot := *documentRootPtr
	databaseHost := *databaseHostPtr
	databaseName := *databaseNamePtr
	databaseUser := *databaseUserPtr
	databasePassword := *databasePasswordPtr
	databaseLogging := *databaseLoggingPtr
	migrationPath := *databaseMigrationPathPtr
	database := booking_database_postgres.New(databaseHost, databaseName, databaseUser, databasePassword, databaseLogging, migrationPath)
	dateStorage := booking_date_storage.New(database)
	tokengenerator := booking_tokengenerator.New()
	modelService := booking_model_service.New(booking_model_storage.New(database), tokengenerator)
	shootingStorage := booking_shooting_storage.New(database)
	shootingValidator := booking_shooting_validator.New()
	shootingService := booking_shooting_service.New(shootingStorage, shootingValidator.ValidateShooting)
	configService := booking_config_service.New(booking_config_storage.New(database))
	userService := booking_user_service.New(booking_user_storage.New(database))
	authenticationService := booking_authentication_service.New(userService, modelService)
	authorizationService := booking_authorization_service.New()
	authenticationConverter := booking_authentication_converter.New()
	eventBus := eventbus.New()
	shootingBookService := booking_shooting_service_book.New(shootingStorage, eventBus, dateStorage)
	shootingRefuseService := booking_shooting_service_refuse.New(shootingStorage, eventBus)
	mailService := booking_mail_service.New()
	mailConfig := booking_mail_config.New(configService.GetString, configService.GetInt)
	dateFormatter := booking_date_formatter.New()
	protocolBuilderProvider := booking_protocol_builder.New(authenticationConverter.HttpRequestToAuthentication, userService.FindUserByAuthentication, modelService.FindModelByAuthentication)
	protocolStorage := booking_protocol_storage.New(database)
	protocolService := booking_protocol_service.New(protocolStorage)
	protocolEventHandler := booking_protocol_event_handler.New(protocolService.Create)
	protocoller := booking_protocol_protocoller.New(protocolBuilderProvider.NewBuilder, eventBus.Publish)
	dateUserService := booking_date_user_service.New(booking_date_user_storage.New(database))
	shootingUserService := booking_shooting_user_service.New(booking_shooting_user_storage.New(database))
	dateService := booking_date_service.New(dateStorage, shootingService.Get, shootingUserService.GetUserIdsForShooting, dateUserService.GetUserIdsForDate)
	bookedEventHander := booking_booked_event_handler.New(mailService.SendMail, mailConfig, userService.List, modelService.Get, dateService.Get, dateFormatter.FormatDate, protocoller.AddProtocolSystem)
	calendarWriter := booking_calendar_writer.New(dateService.List, shootingService.GetShootingByDateId, configService.GetStringDefault, userService.ListUserOfDate)
	modelToVCard := booking_model_vcard.New()
	// register event handler
	if err := eventBus.RegisterHandler(bookedEventHander.HandleBookedEvent); err != nil {
		return nil, err
	}
	if err := eventBus.RegisterHandler(protocolEventHandler.HandleProtocolEvent); err != nil {
		return nil, err
	}
	handlerConfiguration := booking_handler_configuration.New(documentRoot, dateService, modelService, shootingService, userService, authenticationService, authorizationService, authenticationConverter, shootingBookService, shootingRefuseService, configService, calendarWriter, protocoller, dateUserService, shootingUserService, modelToVCard)
	handler := handlerConfiguration.GetHandler()
	if glog.V(4) {
		handler = debug_handler.New(handler)
	}
	glog.V(2).Infof("create http server on %s", port.Address())
	return &http.Server{Addr: port.Address(), Handler: handler}, nil
}
Exemple #5
0
func createServer(address string, documentRoot string, databaseName string, databaseUser string, databasePassword string, databaseLogging bool) *http.Server {
	logger.SetLevelThreshold(log.LogStringToLevel(*logLevelPtr))
	logger.Debugf("set log level to %s", *logLevelPtr)
	db := booking_database_postgres.New(databaseName, databaseUser, databasePassword, databaseLogging)
	dateService := booking_date_service.New(booking_date_storage.New(db))
	tokengenerator := booking_tokengenerator.New()
	modelService := booking_model_service.New(booking_model_storage.New(db), tokengenerator)
	eventbus := eventbus.New()
	shootingService := booking_shooting_service.New(booking_shooting_storage.New(db), eventbus)
	userService := booking_user_service.New(booking_user_storage.New(db))
	authenticationService := booking_authentication_service.New(userService, modelService)
	authorizationService := booking_authorization_service.New()
	authenticationConverter := booking_authentication_converter.New()
	handlerConfiguration := booking_handler_configuration.New(documentRoot, dateService, modelService, shootingService, userService, authenticationService, authorizationService, authenticationConverter)
	return &http.Server{Addr: address, Handler: handlerConfiguration.GetHandler()}
}
func TestVerifyLoginUser(t *testing.T) {
	var err error
	var valid bool
	name := "testuser"
	password := "******"
	database := booking_database_sqlite.New("/tmp/booking_test.db", false)

	userStorage := user_storage.New(database)
	userService := user_service.New(userStorage)

	modelStorage := model_storage.New(database)
	modelService := model_service.New(modelStorage, booking_tokengenerator.New())

	if err := userStorage.Truncate(); err != nil {
		t.Fatal(err)
	}

	_, err = userService.Create(&booking_user.User{Login: name, Password: password})
	if err := AssertThat(err, NilValue()); err != nil {
		t.Fatal(err)
	}
	authenticationService := New(userService, modelService)

	valid, err = authenticationService.VerifyLogin(&booking_authentication.Authentication{Login: name, Password: password})
	if err := AssertThat(err, NilValue()); err != nil {
		t.Fatal(err)
	}
	if err := AssertThat(valid, Is(true)); err != nil {
		t.Fatal(err)
	}

	valid, err = authenticationService.VerifyLogin(&booking_authentication.Authentication{Login: name, Password: "******"})
	if err := AssertThat(err, NilValue()); err != nil {
		t.Fatal(err)
	}
	if err := AssertThat(valid, Is(false)); err != nil {
		t.Fatal(err)
	}

	valid, err = authenticationService.VerifyLogin(&booking_authentication.Authentication{Login: "******", Password: password})
	if err := AssertThat(err, NilValue()); err != nil {
		t.Fatal(err)
	}
	if err := AssertThat(valid, Is(false)); err != nil {
		t.Fatal(err)
	}
}