Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91055815
oai_harvest_web_tests.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Nov 7, 09:49
Size
3 KB
Mime Type
text/x-python
Expires
Sat, Nov 9, 09:49 (2 d)
Engine
blob
Format
Raw Data
Handle
22187362
Attached To
R3600 invenio-infoscience
oai_harvest_web_tests.py
View Options
# -*- coding: utf-8 -*-
## This file is part of Invenio.
## Copyright (C) 2011, 2012 CERN.
##
## Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## Invenio is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
"""OaiHarvest module web tests."""
from
invenio.config
import
CFG_SITE_SECURE_URL
from
invenio.testutils
import
make_test_suite
,
\
run_test_suite
,
\
InvenioWebTestCase
class
InvenioOaiHarvestWebTest
(
InvenioWebTestCase
):
"""OaiHarvest web tests."""
def
test_insert_oai_source
(
self
):
"""oaiharvest - web test insert oai source"""
self
.
browser
.
get
(
CFG_SITE_SECURE_URL
)
# login as admin
self
.
login
(
username
=
"admin"
,
password
=
""
)
self
.
browser
.
get
(
CFG_SITE_SECURE_URL
+
"/admin/oaiharvest/oaiharvestadmin.py"
)
self
.
find_element_by_link_text_with_timeout
(
"add new OAI source"
)
self
.
browser
.
find_element_by_link_text
(
"add new OAI source"
)
.
click
()
self
.
fill_textbox
(
textbox_name
=
"oai_src_baseurl"
,
text
=
"invenio-demo.cern.ch/oai2d"
)
self
.
find_element_by_xpath_with_timeout
(
"//input[@value='Validate']"
)
self
.
browser
.
find_element_by_xpath
(
"//input[@value='Validate']"
)
.
click
()
self
.
fill_textbox
(
textbox_name
=
"oai_src_name"
,
text
=
"AtlantisOAI"
)
self
.
choose_selectbox_option_by_label
(
selectbox_name
=
"oai_src_prefix"
,
label
=
"marcxml"
)
self
.
find_element_by_id_with_timeout
(
"cern:theory1"
)
self
.
browser
.
find_element_by_id
(
"cern:theory1"
)
.
click
()
self
.
choose_selectbox_option_by_index
(
selectbox_name
=
"oai_src_frequency"
,
index
=
"3"
)
self
.
choose_selectbox_option_by_index
(
selectbox_name
=
"oai_src_lastrun"
,
label
=
"2"
)
self
.
find_element_by_id_with_timeout
(
id
=
"post_input_c0"
)
self
.
browser
.
find_element_by_id
(
id
=
"post_input_c0"
)
.
click
()
self
.
find_element_by_xpath_with_timeout
(
"//input[@value='Add OAI Source']"
,
timeout
=
60
)
self
.
browser
.
find_element_by_xpath
(
"//input[@value='Add OAI Source']"
)
.
click
()
self
.
page_source_test
(
expected_text
=
"The field 'cfg-file' is an required argument when choosing 'convert (c)' post-process."
)
self
.
fill_textbox
(
textbox_name
=
"c_cfg-file"
,
text
=
"oaimarc2marcxml.xsl"
)
self
.
find_element_by_xpath_with_timeout
(
"//input[@value='Add OAI Source']"
)
self
.
browser
.
find_element_by_xpath
(
"//input[@value='Add OAI Source']"
)
.
click
()
self
.
find_element_by_link_text_with_timeout
(
"Go back to the OAI sources overview"
)
self
.
browser
.
find_element_by_link_text
(
"Go back to the OAI sources overview"
)
.
click
()
self
.
page_source_test
(
expected_text
=
'AtlantisOAI'
)
self
.
find_element_by_link_text_with_timeout
(
"delete"
)
self
.
browser
.
find_element_by_link_text
(
"delete"
)
.
click
()
self
.
browser
.
find_element_by_class_name
(
"adminbutton"
)
.
click
()
self
.
find_element_by_link_text_with_timeout
(
"Go back to the OAI sources overview"
)
self
.
browser
.
find_element_by_link_text
(
"Go back to the OAI sources overview"
)
.
click
()
self
.
logout
()
TEST_SUITE
=
make_test_suite
(
InvenioOaiHarvestWebTest
,
)
if
__name__
==
'__main__'
:
run_test_suite
(
TEST_SUITE
,
warn_user
=
True
)
Event Timeline
Log In to Comment