diff --git a/apiGo/api/api/ApiBase_test.go b/apiGo/api/api/ApiBase_test.go
deleted file mode 100644
index 1d86191..0000000
--- a/apiGo/api/api/ApiBase_test.go
+++ /dev/null
@@ -1,72 +0,0 @@
-package api
-
-import (
- "testing"
-)
-
-func cleanUp() {
- handlers = make(map[string]Handler)
-}
-
-func TestAddHandler(t *testing.T) {
- cleanUp()
-
- AddHandler("test", ActorNode, api.PermUser, func(context api.Context) {
- return nil
- })
- if len(handlers) != 1 {
- t.Errorf("Handler insertion failed, got: %d handlers, want: %d.", len(handlers), 1)
- }
-}
-
-func TestCallOfHandler(t *testing.T) {
- cleanUp()
-
- i := 0
- AddHandler("test", ActorNode, api.PermUser, func(context api.Context) {
- i++
- return nil
- })
-
- // simulate the call of the api
- handleAPICall("test", "", ActorNode, nil)
-
- if i != 1 {
- t.Errorf("Unexpected number of Lambda calls : %d/1", i)
- }
-}
-
-func TestDecodingOfArguments(t *testing.T) {
- cleanUp()
-
- AddHandler("test", ActorNode, api.PermUser, func(context api.Context) {
- var args struct {
- Test string
- TestInt int
- }
- err := FillStruct(&args, info.Data)
- if err != nil {
- t.Errorf("Error parsing args: %s", err.Error())
- return nil
- }
-
- if args.TestInt != 42 || args.Test != "myString" {
- t.Errorf("Wrong parsing of argument parameters : %d/42 - %s/myString", args.TestInt, args.Test)
- }
-
- return nil
- })
-
- // simulate the call of the api
- handleAPICall("test", `{"Test":"myString","TestInt":42}`, ActorNode, nil)
-}
-
-func TestNoHandlerCovers(t *testing.T) {
- cleanUp()
-
- ret := handleAPICall("test", "", ActorNode, nil)
-
- if ret != nil {
- t.Error("Expect nil return within unhandled api action")
- }
-}
diff --git a/apiGo/config/Config_test.go b/apiGo/config/Config_test.go
new file mode 100644
index 0000000..4c25a83
--- /dev/null
+++ b/apiGo/config/Config_test.go
@@ -0,0 +1,9 @@
+package config
+
+import "testing"
+
+func TestSaveLoadConfig(t *testing.T) {
+ generateNewConfig("", "openmediacenter.cfg")
+
+ Init()
+}
diff --git a/src/App.test.js b/src/App.test.js
index 57f45ce..704d591 100644
--- a/src/App.test.js
+++ b/src/App.test.js
@@ -2,6 +2,7 @@ import React from 'react';
import App from './App';
import {shallow} from 'enzyme';
import GlobalInfos from "./utils/GlobalInfos";
+import {LoginContext} from './utils/context/LoginContext';
describe('', function () {
it('renders without crashing ', function () {
@@ -19,28 +20,6 @@ describe('', function () {
const wrapper = shallow();
wrapper.setState({password: false});
expect(wrapper.find('.navitem')).toHaveLength(4);
-
- GlobalInfos.setTVShowsEnabled(true);
-
- wrapper.instance().forceUpdate();
- expect(wrapper.find('.navitem')).toHaveLength(5);
- });
-
- it('test initial fetch from api', done => {
- callAPIMock({
- MediacenterName: 'testname'
- })
-
- GlobalInfos.enableDarkTheme = jest.fn((r) => {})
-
- const wrapper = shallow();
-
- process.nextTick(() => {
- expect(document.title).toBe('testname');
-
- global.fetch.mockClear();
- done();
- });
});
it('test render of password page', function () {
diff --git a/src/pages/AuthenticationPage/AuthenticationPage.test.js b/src/pages/AuthenticationPage/AuthenticationPage.test.js
index fd46cb3..4e76c45 100644
--- a/src/pages/AuthenticationPage/AuthenticationPage.test.js
+++ b/src/pages/AuthenticationPage/AuthenticationPage.test.js
@@ -1,7 +1,6 @@
import React from 'react';
import AuthenticationPage from './AuthenticationPage';
import {shallow} from 'enzyme';
-import {token} from "../../utils/TokenHandler";
describe('', function () {
it('renders without crashing ', function () {
@@ -12,10 +11,8 @@ describe('', function () {
it('test button click', function () {
const func = jest.fn();
- const wrapper = shallow();
- wrapper.instance().authenticate = jest.fn(() => {
- wrapper.instance().props.onSuccessLogin()
- });
+ const wrapper = shallow();
+ wrapper.instance().authenticate = func;
wrapper.setState({pwdText: 'testpwd'});
wrapper.find('Button').simulate('click');
@@ -23,33 +20,16 @@ describe('', function () {
expect(func).toHaveBeenCalledTimes(1);
});
- it('test fail authenticate', function () {
+ it('test keyenter', function () {
const events = mockKeyPress();
- token.refreshAPIToken = jest.fn().mockImplementation((callback, force, pwd) => {
- callback('there was an error')
- });
-
const wrapper = shallow();
- events.keyup({key: 'Enter'});
-
- expect(wrapper.state().wrongPWDInfo).toBe(true);
- });
-
- it('test success authenticate', function () {
- const events = mockKeyPress();
- const func = jest.fn()
-
- token.refreshAPIToken = jest.fn().mockImplementation((callback, force, pwd) => {
- callback('')
- });
-
- const wrapper = shallow();
+ const func = jest.fn();
+ wrapper.instance().authenticate = func;
events.keyup({key: 'Enter'});
- expect(wrapper.state().wrongPWDInfo).toBe(false);
expect(func).toHaveBeenCalledTimes(1);
});
});
diff --git a/src/pages/AuthenticationPage/AuthenticationPage.tsx b/src/pages/AuthenticationPage/AuthenticationPage.tsx
index 8227eaa..e2ff328 100644
--- a/src/pages/AuthenticationPage/AuthenticationPage.tsx
+++ b/src/pages/AuthenticationPage/AuthenticationPage.tsx
@@ -86,8 +86,9 @@ class AuthenticationPage extends React.Component {
this.context.setLoginState(LoginState.LoggedIn);
},
- (e) => {
- console.log(e);
+ () => {
+ this.setState({wrongPWDInfo: true});
+ setTimeout(() => this.setState({wrongPWDInfo: false}), 2000);
}
);
}
diff --git a/src/pages/CategoryPage/CategoryPage.test.js b/src/pages/CategoryPage/CategoryPage.test.js
deleted file mode 100644
index 97e61d0..0000000
--- a/src/pages/CategoryPage/CategoryPage.test.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import {shallow} from 'enzyme';
-import React from 'react';
-import CategoryPage from './CategoryPage';
-
-describe('', function () {
- it('renders without crashing ', function () {
- const wrapper = shallow();
- wrapper.unmount();
- });
-});
diff --git a/src/pages/CategoryPage/CategoryPage.tsx b/src/pages/CategoryPage/CategoryPage.tsx
index b019059..3249e42 100644
--- a/src/pages/CategoryPage/CategoryPage.tsx
+++ b/src/pages/CategoryPage/CategoryPage.tsx
@@ -10,8 +10,6 @@ import TagView from './TagView';
const CategoryPage = (): JSX.Element => {
const match = useRouteMatch();
- console.log(match.url);
-
return (
diff --git a/src/pages/Player/Player.test.js b/src/pages/Player/Player.test.js
index 92206a8..5f38be2 100644
--- a/src/pages/Player/Player.test.js
+++ b/src/pages/Player/Player.test.js
@@ -3,12 +3,13 @@ import React from 'react';
import {Player} from './Player';
import {callAPI} from '../../utils/Api';
import GlobalInfos from "../../utils/GlobalInfos";
+import {LoginContext} from '../../utils/context/LoginContext';
describe('', function () {
// help simulating id passed by url
function instance() {
- return shallow();
+ return shallow(, {context: LoginContext});
}
it('renders without crashing ', function () {
@@ -88,23 +89,13 @@ describe('', function () {
it('test fully delete popup rendering', function () {
const wrapper = instance();
- // allow videos to be fully deletable
- GlobalInfos.setFullDeleteEnabled(true);
+ wrapper.setContext({VideosFullyDeleteable: true})
wrapper.setState({deletepopupvisible: true});
expect(wrapper.find('ButtonPopup')).toHaveLength(1)
});
- it('test delete popup rendering', function () {
- const wrapper = instance();
-
- GlobalInfos.setFullDeleteEnabled(false);
- wrapper.setState({deletepopupvisible: true});
-
- expect(wrapper.find('ButtonPopup')).toHaveLength(1)
- });
-
it('test delete button', () => {
const wrapper = instance();
const callback = jest.fn();
@@ -112,7 +103,7 @@ describe('', function () {
wrapper.setProps({history: {goBack: callback}});
callAPIMock({result: 'success'})
- GlobalInfos.setFullDeleteEnabled(false);
+ wrapper.setContext({VideosFullyDeleteable: false})
// request the popup to pop
wrapper.find('.videoactions').find('Button').at(2).simulate('click');
@@ -125,7 +116,7 @@ describe('', function () {
expect(callback).toHaveBeenCalledTimes(1);
// now lets test if this works also with the fullydeletepopup
- GlobalInfos.setFullDeleteEnabled(true);
+ wrapper.setContext({VideosFullyDeleteable: true})
// request the popup to pop
wrapper.setState({deletepopupvisible: true}, () => {
// click the first submit button
diff --git a/src/pages/SettingsPage/SettingsPage.test.js b/src/pages/SettingsPage/SettingsPage.test.js
deleted file mode 100644
index e6459dc..0000000
--- a/src/pages/SettingsPage/SettingsPage.test.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import {shallow} from 'enzyme';
-import React from 'react';
-import SettingsPage from './SettingsPage';
-
-describe('', function () {
- it('renders without crashing ', function () {
- const wrapper = shallow();
- wrapper.unmount();
- });
-});
diff --git a/src/setupTests.js b/src/setupTests.js
index 0ffa066..41b341b 100644
--- a/src/setupTests.js
+++ b/src/setupTests.js
@@ -6,8 +6,6 @@ import '@testing-library/jest-dom/extend-expect';
import {configure} from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
-import {CookieTokenStore} from "./utils/TokenStore/CookieTokenStore";
-import {token} from "./utils/TokenHandler";
configure({adapter: new Adapter()});
@@ -45,7 +43,6 @@ global.callAPIMock = (resonse) => {
global.beforeEach(() => {
// empty fetch response implementation for each test
global.fetch = prepareFetchApi({});
- token.init(new CookieTokenStore());
// todo with callAPIMock
});