├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── controllers │ └── ldap_settings_controller.rb ├── helpers │ └── ldap_settings_helper.rb ├── models │ ├── ldap_setting.rb │ └── ldap_test.rb └── views │ └── ldap_settings │ ├── _ldap_settings.html.erb │ ├── _synchronization_actions.html.erb │ ├── _test.html.erb │ ├── base_settings.js.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── ldap_setting_invalid.text.erb │ ├── ldap_test_invalid.text.erb │ └── test.text.erb ├── assets ├── images │ ├── disable.png │ ├── enable.png │ └── server_key.png ├── javascripts │ └── ldap_settings.js └── stylesheets │ └── ldap_sync.css ├── config ├── Gemfile.travis ├── base_settings.yml ├── database.yml.travis ├── locales │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ ├── ja.yml │ ├── nl.yml │ ├── pl.yml │ ├── pt.yml │ └── ru.yml └── routes.rb ├── db └── migrate │ ├── 201108021245_change_settings_name.rb │ ├── 201110050735_add_user_memberid_setting.rb │ ├── 201111271700_add_group_membership_setting.rb │ ├── 201201010043_create_ldap_cache_dir.rb │ ├── 201201071359_update_attributes_to_sync.rb │ ├── 201201291950_rename_must_be_member_of_and_add_to_group_settings.rb │ ├── 201201302250_remove_attr_prefix_settings.rb │ ├── 201202082153_add_account_flags_setting.rb │ ├── 201211202050_update_check_box_values.rb │ ├── 201302052050_update_user_group_fields.rb │ ├── 201302202301_change_setting_id_from_name_to_auth_source_id.rb │ ├── 201302212308_enable_sync_on_login.rb │ ├── 201503252355_add_users_search_scope.rb │ └── 20170524063056_rename_account_disabled_test.rb ├── doc └── RUNNING_TESTS ├── init.rb ├── lib ├── ldap_sync │ ├── core_ext.rb │ ├── core_ext │ │ ├── ber.rb │ │ ├── file_store.rb │ │ ├── ldap.rb │ │ ├── ldap_entry.rb │ │ ├── migration.rb │ │ └── string.rb │ ├── dry_run │ │ ├── group.rb │ │ └── user.rb │ ├── entity_manager.rb │ ├── hooks.rb │ ├── infectors.rb │ └── infectors │ │ ├── auth_source_ldap.rb │ │ ├── group.rb │ │ └── user.rb └── tasks │ ├── ldap_sync.rake │ └── testing.rake ├── script └── ci.sh └── test ├── fixtures ├── .gitkeep ├── auth_sources.yml ├── custom_fields.yml ├── email_addresses.yml ├── groups_users.yml ├── ldap │ ├── large-ldap.lidf │ ├── names.rb │ ├── slapd.conf │ └── test-ldap.ldif ├── member_roles.yml ├── members.yml ├── projects.yml ├── roles.yml ├── settings.yml └── users.yml ├── functional └── ldap_settings_controller_test.rb ├── integration └── .gitkeep ├── performance └── auth_source_ldap_performance_test.rb ├── test_helper.rb ├── ui ├── base.rb ├── ldap_setting_test.rb └── login_test.rb └── unit ├── auth_source_ldap_test.rb ├── helpers └── ldap_settings_helper_test.rb ├── ldap_setting_test.rb └── ldap_test_test.rb /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | tmp 3 | Gemfile 4 | .svn 5 | .directory 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/ldap_settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/controllers/ldap_settings_controller.rb -------------------------------------------------------------------------------- /app/helpers/ldap_settings_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/helpers/ldap_settings_helper.rb -------------------------------------------------------------------------------- /app/models/ldap_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/models/ldap_setting.rb -------------------------------------------------------------------------------- /app/models/ldap_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/models/ldap_test.rb -------------------------------------------------------------------------------- /app/views/ldap_settings/_ldap_settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/_ldap_settings.html.erb -------------------------------------------------------------------------------- /app/views/ldap_settings/_synchronization_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/_synchronization_actions.html.erb -------------------------------------------------------------------------------- /app/views/ldap_settings/_test.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/_test.html.erb -------------------------------------------------------------------------------- /app/views/ldap_settings/base_settings.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/base_settings.js.erb -------------------------------------------------------------------------------- /app/views/ldap_settings/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/edit.html.erb -------------------------------------------------------------------------------- /app/views/ldap_settings/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/index.html.erb -------------------------------------------------------------------------------- /app/views/ldap_settings/ldap_setting_invalid.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/ldap_setting_invalid.text.erb -------------------------------------------------------------------------------- /app/views/ldap_settings/ldap_test_invalid.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/ldap_test_invalid.text.erb -------------------------------------------------------------------------------- /app/views/ldap_settings/test.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/app/views/ldap_settings/test.text.erb -------------------------------------------------------------------------------- /assets/images/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/assets/images/disable.png -------------------------------------------------------------------------------- /assets/images/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/assets/images/enable.png -------------------------------------------------------------------------------- /assets/images/server_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/assets/images/server_key.png -------------------------------------------------------------------------------- /assets/javascripts/ldap_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/assets/javascripts/ldap_settings.js -------------------------------------------------------------------------------- /assets/stylesheets/ldap_sync.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/assets/stylesheets/ldap_sync.css -------------------------------------------------------------------------------- /config/Gemfile.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/Gemfile.travis -------------------------------------------------------------------------------- /config/base_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/base_settings.yml -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/nl.yml -------------------------------------------------------------------------------- /config/locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/pl.yml -------------------------------------------------------------------------------- /config/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/pt.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/201108021245_change_settings_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201108021245_change_settings_name.rb -------------------------------------------------------------------------------- /db/migrate/201110050735_add_user_memberid_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201110050735_add_user_memberid_setting.rb -------------------------------------------------------------------------------- /db/migrate/201111271700_add_group_membership_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201111271700_add_group_membership_setting.rb -------------------------------------------------------------------------------- /db/migrate/201201010043_create_ldap_cache_dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201201010043_create_ldap_cache_dir.rb -------------------------------------------------------------------------------- /db/migrate/201201071359_update_attributes_to_sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201201071359_update_attributes_to_sync.rb -------------------------------------------------------------------------------- /db/migrate/201201291950_rename_must_be_member_of_and_add_to_group_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201201291950_rename_must_be_member_of_and_add_to_group_settings.rb -------------------------------------------------------------------------------- /db/migrate/201201302250_remove_attr_prefix_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201201302250_remove_attr_prefix_settings.rb -------------------------------------------------------------------------------- /db/migrate/201202082153_add_account_flags_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201202082153_add_account_flags_setting.rb -------------------------------------------------------------------------------- /db/migrate/201211202050_update_check_box_values.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201211202050_update_check_box_values.rb -------------------------------------------------------------------------------- /db/migrate/201302052050_update_user_group_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201302052050_update_user_group_fields.rb -------------------------------------------------------------------------------- /db/migrate/201302202301_change_setting_id_from_name_to_auth_source_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201302202301_change_setting_id_from_name_to_auth_source_id.rb -------------------------------------------------------------------------------- /db/migrate/201302212308_enable_sync_on_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201302212308_enable_sync_on_login.rb -------------------------------------------------------------------------------- /db/migrate/201503252355_add_users_search_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/201503252355_add_users_search_scope.rb -------------------------------------------------------------------------------- /db/migrate/20170524063056_rename_account_disabled_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/db/migrate/20170524063056_rename_account_disabled_test.rb -------------------------------------------------------------------------------- /doc/RUNNING_TESTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/doc/RUNNING_TESTS -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/init.rb -------------------------------------------------------------------------------- /lib/ldap_sync/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/core_ext.rb -------------------------------------------------------------------------------- /lib/ldap_sync/core_ext/ber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/core_ext/ber.rb -------------------------------------------------------------------------------- /lib/ldap_sync/core_ext/file_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/core_ext/file_store.rb -------------------------------------------------------------------------------- /lib/ldap_sync/core_ext/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/core_ext/ldap.rb -------------------------------------------------------------------------------- /lib/ldap_sync/core_ext/ldap_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/core_ext/ldap_entry.rb -------------------------------------------------------------------------------- /lib/ldap_sync/core_ext/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/core_ext/migration.rb -------------------------------------------------------------------------------- /lib/ldap_sync/core_ext/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/core_ext/string.rb -------------------------------------------------------------------------------- /lib/ldap_sync/dry_run/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/dry_run/group.rb -------------------------------------------------------------------------------- /lib/ldap_sync/dry_run/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/dry_run/user.rb -------------------------------------------------------------------------------- /lib/ldap_sync/entity_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/entity_manager.rb -------------------------------------------------------------------------------- /lib/ldap_sync/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/hooks.rb -------------------------------------------------------------------------------- /lib/ldap_sync/infectors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/infectors.rb -------------------------------------------------------------------------------- /lib/ldap_sync/infectors/auth_source_ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/infectors/auth_source_ldap.rb -------------------------------------------------------------------------------- /lib/ldap_sync/infectors/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/infectors/group.rb -------------------------------------------------------------------------------- /lib/ldap_sync/infectors/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/ldap_sync/infectors/user.rb -------------------------------------------------------------------------------- /lib/tasks/ldap_sync.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/tasks/ldap_sync.rake -------------------------------------------------------------------------------- /lib/tasks/testing.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/lib/tasks/testing.rake -------------------------------------------------------------------------------- /script/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/script/ci.sh -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/auth_sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/auth_sources.yml -------------------------------------------------------------------------------- /test/fixtures/custom_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/custom_fields.yml -------------------------------------------------------------------------------- /test/fixtures/email_addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/email_addresses.yml -------------------------------------------------------------------------------- /test/fixtures/groups_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/groups_users.yml -------------------------------------------------------------------------------- /test/fixtures/ldap/large-ldap.lidf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/ldap/large-ldap.lidf -------------------------------------------------------------------------------- /test/fixtures/ldap/names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/ldap/names.rb -------------------------------------------------------------------------------- /test/fixtures/ldap/slapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/ldap/slapd.conf -------------------------------------------------------------------------------- /test/fixtures/ldap/test-ldap.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/ldap/test-ldap.ldif -------------------------------------------------------------------------------- /test/fixtures/member_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/member_roles.yml -------------------------------------------------------------------------------- /test/fixtures/members.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/members.yml -------------------------------------------------------------------------------- /test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/projects.yml -------------------------------------------------------------------------------- /test/fixtures/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/roles.yml -------------------------------------------------------------------------------- /test/fixtures/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/settings.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/functional/ldap_settings_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/functional/ldap_settings_controller_test.rb -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance/auth_source_ldap_performance_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/performance/auth_source_ldap_performance_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/ui/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/ui/base.rb -------------------------------------------------------------------------------- /test/ui/ldap_setting_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/ui/ldap_setting_test.rb -------------------------------------------------------------------------------- /test/ui/login_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/ui/login_test.rb -------------------------------------------------------------------------------- /test/unit/auth_source_ldap_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/unit/auth_source_ldap_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/ldap_settings_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/unit/helpers/ldap_settings_helper_test.rb -------------------------------------------------------------------------------- /test/unit/ldap_setting_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/unit/ldap_setting_test.rb -------------------------------------------------------------------------------- /test/unit/ldap_test_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thorin/redmine_ldap_sync/HEAD/test/unit/ldap_test_test.rb --------------------------------------------------------------------------------