-
-
Notifications
You must be signed in to change notification settings - Fork 932
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is there any automated testing cases/tools for my own server? #388
Comments
Not yet AFAIK but I like the idea.. That's definitely something I'll keep in mind as a future project. Something like the W3C validator for OAuth2 servers. |
You can test using https://www.getpostman.com/collections/37afd82600127fbeef28 INSERT INTO `oauth_clients` (`id`, `name`, `client_id`, `client_secret`, `redirect_uri`, `grant_types`, `scope`, `user_id`) VALUES
(1, NULL, 'democlient', 'democlientsecret', 'http://localhost/cb', NULL, NULL, 1);
INSERT INTO `oauth_scopes` (`id`, `scope`, `is_default`) VALUES
(1, 'profile', NULL);
INSERT INTO `users` (`id`, `username`, `password`, `scope`) VALUES
(1, 'admin', 'admin', 'profile');
username: Refer for data: https://github.com/manjeshpv/node-oauth2-server-implementation/blob/master/sql/oauth_demo.sql I'm also planning to setup and demo. If anyone interested manjeshpv/node-oauth2-server-implementation#10 |
thanks for the efforts. I would like to add some points from my point views on the test suite.
|
I guess you can add it #393 If u create one repo, I'll code with u for it. |
or how to verify my version server is working?
The text was updated successfully, but these errors were encountered: